Skip to content

Commit

Permalink
Fix e2e tests for OnDemand
Browse files Browse the repository at this point in the history
  • Loading branch information
treydock committed Oct 7, 2023
1 parent 03f8b84 commit c1e8514
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/e2e.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,12 @@ jobs:
run: docker load --input /tmp/ood_packaging-${{ matrix.dist }}.tar.gz
- name: Clone ${{ matrix.package }}
run: |
if [ "${{ matrix.package }}" = "ondemand" ]; then
BRANCH="--branch release_3.0"
else
BRANCH=""
fi
mkdir -p ./tmp
git clone https://github.com/OSC/${{ matrix.package }}.git ./tmp/${{ matrix.package }}
git clone $BRANCH https://github.com/OSC/${{ matrix.package }}.git ./tmp/${{ matrix.package }}
- name: Build ${{ matrix.package }} package
run: ./bin/ood_packaging -w ./tmp/work -o ./tmp/output -d ${{ matrix.dist }} -V v3.0.0 -T --debug $(pwd)/tmp/${{ matrix.package }}

0 comments on commit c1e8514

Please sign in to comment.