Skip to content

add jasmin installation to external CI jobs #793

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

Draft
wants to merge 3 commits into
base: main
Choose a base branch
from
Draft
Show file tree
Hide file tree
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
5 changes: 3 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ jobs:
needs: [compile-opam, fetch-external-matrix]
runs-on: ubuntu-24.04
container:
image: ghcr.io/easycrypt/ec-build-box
image: ghcr.io/easycrypt/ec-build-box:jasmin
strategy:
fail-fast: false
matrix:
Expand All @@ -125,8 +125,9 @@ jobs:
-b ${{ steps.branch_name.outputs.REPO_BRANCH }} \
${{ matrix.target.repository }} \
project/${{ matrix.target.name }}
- name: Install EasyCrypt dependencies
- name: Install Jasmin and EasyCrypt dependencies
run: |
opam install jasmin
opam pin add -n easycrypt easycrypt
opam install --deps-only easycrypt
- name: Compile & Install EasyCrypt
Expand Down
1 change: 1 addition & 0 deletions scripts/docker/Dockerfile.build
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ FROM ./Dockerfile.base as base-build

RUN \
sudo apt-get -q -y install wget curl python3 python3-pip python3-yaml && \
sudo apt-get -q -y install libmpfr-dev libppl-dev && \
sudo apt-get -q -y clean

RUN \
Expand Down