diff options
author | Nicolas Patry <patry.nicolas@protonmail.com> | 2023-12-29 10:17:52 +0100 |
---|---|---|
committer | Nicolas Patry <patry.nicolas@protonmail.com> | 2023-12-29 10:17:52 +0100 |
commit | a6bd0b47a5955008ef76eecdc0b2ec9acc7dd40c (patch) | |
tree | 349d42ee6de85637d9d815c12d8d1658ea020ac2 /.github | |
parent | 1e442d4bb90cf9d16158ef48a596828c586b1fde (diff) | |
download | candle-a6bd0b47a5955008ef76eecdc0b2ec9acc7dd40c.tar.gz candle-a6bd0b47a5955008ef76eecdc0b2ec9acc7dd40c.tar.bz2 candle-a6bd0b47a5955008ef76eecdc0b2ec9acc7dd40c.zip |
Fix the CI.
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/ci_cuda.yaml | 2 | ||||
-rw-r--r-- | .github/workflows/rust-ci.yml | 2 |
2 files changed, 4 insertions, 0 deletions
diff --git a/.github/workflows/ci_cuda.yaml b/.github/workflows/ci_cuda.yaml index ec792a25..0767e839 100644 --- a/.github/workflows/ci_cuda.yaml +++ b/.github/workflows/ci_cuda.yaml @@ -8,6 +8,8 @@ jobs: start-runner: name: Start self-hosted EC2 runner runs-on: ubuntu-latest + # Don't run on forks, they won't have access to secrets anyway. + if: ${{ github.event.pull_request.head.repo.full_name == github.event.pull_request.base.repo.full_name }} env: AWS_REGION: us-east-1 EC2_AMI_ID: ami-03cfed9ea28f4b002 diff --git a/.github/workflows/rust-ci.yml b/.github/workflows/rust-ci.yml index 2ca53b23..2809aa58 100644 --- a/.github/workflows/rust-ci.yml +++ b/.github/workflows/rust-ci.yml @@ -40,6 +40,8 @@ jobs: profile: minimal toolchain: ${{ matrix.rust }} override: true + - name: Setup tmate session + uses: mxschmitt/action-tmate@v3 - uses: actions-rs/cargo@v1 with: command: test |