From bd49cc9a48f56207e10b0d9025a92b0967dbe140 Mon Sep 17 00:00:00 2001 From: rudy Date: Wed, 4 May 2022 08:55:10 +0200 Subject: [PATCH] fix(ci): compiling concrete-optimizer for release --- .github/workflows/continuous-integration.yml | 30 ++++++++++++++++++++ 1 file changed, 30 insertions(+) diff --git a/.github/workflows/continuous-integration.yml b/.github/workflows/continuous-integration.yml index a2de76543..7a53be20c 100644 --- a/.github/workflows/continuous-integration.yml +++ b/.github/workflows/continuous-integration.yml @@ -437,6 +437,16 @@ jobs: with: submodules: recursive + - name: Install Rust + uses: actions-rs/toolchain@v1 + with: + toolchain: stable + + - name: Concrete-Optimizer + run: | + cd compiler + make concrete-optimizer-lib + - name: Login to Github Container Registry run: echo "${{ secrets.GHCR_PASSWORD }}" | docker login -u ${{ secrets.GHCR_LOGIN }} --password-stdin ghcr.io @@ -472,6 +482,16 @@ jobs: with: submodules: recursive + - name: Install Rust + uses: actions-rs/toolchain@v1 + with: + toolchain: stable + + - name: Concrete-Optimizer + run: | + cd compiler + make concrete-optimizer-lib + - name: Login to Github Container Registry run: echo "${{ secrets.GHCR_PASSWORD }}" | docker login -u ${{ secrets.GHCR_LOGIN }} --password-stdin ghcr.io @@ -513,6 +533,16 @@ jobs: with: submodules: recursive + - name: Install Rust + uses: actions-rs/toolchain@v1 + with: + toolchain: stable + + - name: Concrete-Optimizer + run: | + cd compiler + make concrete-optimizer-lib + - uses: actions/checkout@v2 with: repository: zama-ai/concrete_internal