Skip to content

Commit

Permalink
Add integration test to testing-pipeline.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
n-jay committed Nov 27, 2024
1 parent 472c81b commit d0c0e40
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/testing-pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,23 @@ jobs:
chown -R aswfuser:aswfgroup .
su -c "cd cuebot && ./gradlew build --stacktrace --info" aswfuser
integration_test:
name: Run Integration Test
runs-on: ubuntu-22.04
steps:
- name: Checkout
uses: actions/checkout@v3

- name: Run test
run: ci/run_integration_test.sh

- name: Archive log files
uses: actions/upload-artifact@v3
if: ${{ always() }}
with:
name: test-logs
path: /tmp/opencue-test/*.log

lint_python:
name: Lint Python Code
runs-on: ubuntu-22.04
Expand Down

0 comments on commit d0c0e40

Please sign in to comment.