Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Simplify install of pinned libs in CI #693

Merged
merged 1 commit into from
Apr 2, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 5 additions & 15 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,7 @@ jobs:
texlive-latex-extra
opam depext --install --yes dune odoc camlp-streams \
${{ matrix.additional-packages }}
cd pinned_libs/default
opam install --yes . --deps-only
cd ../..
opam install --yes pinned_libs/default --deps-only
- name: Make Kappa
run: opam exec -- make all
- name: Make documentation
Expand Down Expand Up @@ -61,9 +59,7 @@ jobs:
sudo apt-get install --yes gnuplot-nox \
poppler-utils graphviz texlive-latex-recommended \
texlive-fonts-recommended texlive-pictures tex4ht
cd pinned_libs/default
opam install --yes . --deps-only
cd ../..
opam install --yes pinned_libs/default --deps-only
pip install nose
- name: Make Kappa
run: |
Expand Down Expand Up @@ -93,9 +89,7 @@ jobs:
texlive-fonts-recommended texlive-pictures tex4ht
- name: Install OPAM dependencies
run: |
cd pinned_libs/default
opam install --yes . --deps-only
cd ../..
opam install --yes pinned_libs/default --deps-only
- name: Make Kappa
run: opam exec -- make all
- name: Make Javascript app
Expand Down Expand Up @@ -124,9 +118,7 @@ jobs:
ocaml-compiler: 4.13.x
- name: Install OPAM dependencies
run: |
cd pinned_libs/default
opam install --yes . --deps-only
cd ../..
opam install --yes pinned_libs/default --deps-only
- name: Make Kappa
run: opam exec -- make all
- name: Make MacOS app
Expand Down Expand Up @@ -157,9 +149,7 @@ jobs:
ocaml-compiler: 4.14.x
- name: Install OPAM dependencies
run: |
cd pinned_libs/windows
opam install --yes . --deps-only
cd ../..
opam install --yes pinned_libs/windows --deps-only
- name: Make Kappa
run: opam exec -- make all
- name: Make Windows app
Expand Down