diff options
author | Son Ho | 2024-06-17 20:17:10 +0200 |
---|---|---|
committer | Son Ho | 2024-06-17 20:17:10 +0200 |
commit | da7a8a75c5bc2c91cc429146f11712e165538773 (patch) | |
tree | 640c1e5ebc3f711c5ff2c001030e601a4d212cd6 | |
parent | d88ed5fa345bc9808a850f47bcf598daba923bda (diff) | |
parent | 0e5f86f4c75450c20bdde9e7122f6656680759ca (diff) |
Merge branch 'main' into son/update-lean
-rw-r--r-- | .github/workflows/ci.yml | 16 |
1 files changed, 12 insertions, 4 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 17ed0f26..e66e5753 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -18,8 +18,11 @@ permissions: jobs: # Avoid `push` and `pull_request` running the same job twice check_if_skip_duplicate_job: - runs-on: [self-hosted, linux, nix] + # runs-on: [self-hosted, linux, nix] + runs-on: ubuntu-latest steps: + - uses: DeterminateSystems/nix-installer-action@main + - uses: DeterminateSystems/magic-nix-cache-action@main - id: skip_check uses: fkirc/skip-duplicate-actions@v5 with: @@ -30,11 +33,13 @@ jobs: should_skip: ${{ steps.skip_check.outputs.should_skip }} nix: - #runs-on: ubuntu-latest - runs-on: [self-hosted, linux, nix] + # runs-on: [self-hosted, linux, nix] + runs-on: ubuntu-latest needs: check_if_skip_duplicate_job if: needs.check_if_skip_duplicate_job.outputs.should_skip != 'true' steps: + - uses: DeterminateSystems/nix-installer-action@main + - uses: DeterminateSystems/magic-nix-cache-action@main - uses: actions/checkout@v4 - run: nix build -L .#checks.x86_64-linux.aeneas-check-tidiness - run: nix build -L .#checks.x86_64-linux.check-charon-pin @@ -56,8 +61,11 @@ jobs: - run: nix develop --command bash -c "cd tests/lean && make" check-charon-pin: - runs-on: [self-hosted, linux, nix] + # runs-on: [self-hosted, linux, nix] + runs-on: ubuntu-latest steps: + - uses: DeterminateSystems/nix-installer-action@main + - uses: DeterminateSystems/magic-nix-cache-action@main - uses: actions/checkout@v4 with: fetch-depth: 0 # deep clone in order to get access to other commits |