Skip to content

Commit

Permalink
[ci/cd] Add integration test to testing-pipeline.yml (#1606)
Browse files Browse the repository at this point in the history
**Link the Issue(s) this Pull Request is related to.**
N/A

**Summarize your change.**
Adds integration test script to testing pipeline to ensure key OpenCue
components work in cohesion with individual changes.

Co-authored-by: Diego Tavares <[email protected]>
  • Loading branch information
n-jay and DiegoTavares authored Dec 4, 2024
1 parent 33bde08 commit b81e239
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 @@ -49,6 +49,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 b81e239

Please sign in to comment.