From 0baa02549cae04b285bfe9c03bfd181d41ed59a6 Mon Sep 17 00:00:00 2001 From: Arthur Meyre Date: Tue, 3 Aug 2021 14:42:05 +0200 Subject: [PATCH] build(mlir): setup things to use the MLIR/homomorphizer docker image --- .github/workflows/continuous-integration.yaml | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/.github/workflows/continuous-integration.yaml b/.github/workflows/continuous-integration.yaml index 4a35a7038..8976a685c 100644 --- a/.github/workflows/continuous-integration.yaml +++ b/.github/workflows/continuous-integration.yaml @@ -9,12 +9,20 @@ jobs: cancel-in-progress: true runs-on: ubuntu-20.04 + container: + image: ghcr.io/zama-ai/zamalang-compiler + credentials: + username: zama-bot + password: ${{ secrets.BOT_TOKEN }} strategy: matrix: python-version: [3.8] steps: - - uses: actions/checkout@v2 + - name: Install Git + run: apt-get install git -y + - name: Checkout Code + uses: actions/checkout@v2 with: fetch-depth: 0 - name: Set up Python ${{ matrix.python-version }}