Skip to content

Commit

Permalink
Merge pull request #122 from ArangoGutierrez/arc_runner
Browse files Browse the repository at this point in the history
Run E2E on ARC Runner
  • Loading branch information
ArangoGutierrez authored Jul 30, 2024
2 parents fbed366 + 38b7fca commit 60e5630
Showing 1 changed file with 6 additions and 8 deletions.
14 changes: 6 additions & 8 deletions .github/workflows/e2e.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,25 +25,23 @@ on:

jobs:
e2e-tests:
runs-on: ubuntu-latest
if: ${{ github.event.workflow_run.conclusion == 'success' }} && ${{ github.event.workflow_run.event == 'push' }}
runs-on: pdx01-arc-runners
if: ${{ github.event.workflow_run.conclusion == 'success' }}
steps:
- uses: actions/checkout@v4
name: Check out code
- name: Calculate build vars
id: vars
run: |
echo "COMMIT_SHORT_SHA=${GITHUB_SHA:0:8}" >> $GITHUB_ENV
- name: Set up Holodeck
uses: NVIDIA/holodeck@main
- name: Install Go
uses: actions/setup-go@v5
with:
aws_access_key_id: ${{ secrets.AWS_ACCESS_KEY_ID }}
aws_secret_access_key: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
go-version: 'stable'
check-latest: true
- name: Run e2e tests
env:
LOG_ARTIFACTS: ${{ github.workspace }}/e2e_logs
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }}
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
run: |
make -f tests/Makefile e2e-test
- name: Archive test logs
Expand Down

0 comments on commit 60e5630

Please sign in to comment.