diff options
author | Son Ho | 2024-06-17 20:17:44 +0200 |
---|---|---|
committer | Son Ho | 2024-06-17 20:17:44 +0200 |
commit | 5352b308850982c51fdf42fb8b4dd772f8a0bd0b (patch) | |
tree | 7c02fae02d0b6e4d089a6a1f666c0dd7ee711f91 | |
parent | da7a8a75c5bc2c91cc429146f11712e165538773 (diff) | |
parent | 50cd6d5dacf96884e04d138dc19a553df10f5674 (diff) |
Merge branch 'main' into son/update-lean
-rw-r--r-- | .github/workflows/ci.yml | 16 |
1 files changed, 4 insertions, 12 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index e66e5753..17ed0f26 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -18,11 +18,8 @@ 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: ubuntu-latest + runs-on: [self-hosted, linux, nix] steps: - - uses: DeterminateSystems/nix-installer-action@main - - uses: DeterminateSystems/magic-nix-cache-action@main - id: skip_check uses: fkirc/skip-duplicate-actions@v5 with: @@ -33,13 +30,11 @@ jobs: should_skip: ${{ steps.skip_check.outputs.should_skip }} nix: - # runs-on: [self-hosted, linux, nix] - runs-on: ubuntu-latest + #runs-on: ubuntu-latest + runs-on: [self-hosted, linux, nix] 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 @@ -61,11 +56,8 @@ jobs: - run: nix develop --command bash -c "cd tests/lean && make" check-charon-pin: - # runs-on: [self-hosted, linux, nix] - runs-on: ubuntu-latest + runs-on: [self-hosted, linux, nix] 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 |