diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index fd5d7e3..5db7ea5 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -1,5 +1,9 @@ name: CI +# Runners: uvacompute (https://uvacompute.com) +# To enable, set the UVA_RUNNER repo variable to the correct runner label. +# runs-on: ${{ vars.UVA_RUNNER || 'ubuntu-latest' }} + on: push: branches: [main] @@ -12,7 +16,7 @@ permissions: jobs: cargo: name: Cargo Build - runs-on: ${{ vars.UVA_RUNNER || 'ubuntu-latest' }} + runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 @@ -39,7 +43,7 @@ jobs: docker: name: Docker Build - runs-on: ${{ vars.UVA_RUNNER || 'ubuntu-latest' }} + runs-on: ubuntu-latest steps: - uses: actions/checkout@v4