Skip to content

Commit

Permalink
#99 examples runner, attempt - with working directory
Browse files Browse the repository at this point in the history
  • Loading branch information
dk1844 committed Aug 2, 2021
1 parent 0f70984 commit 2d27880
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,8 +52,9 @@ jobs:
if: ${{ ! contains( github.event.pull_request.labels.*.name, 'NoTestNeeded') }}
run: mvn clean install --no-transfer-progress -Pspark-${{ matrix.spark }} -Dspan.scale.factor=10

- name: Switch scala to ${{ matrix.scala }} for Atum Examples
run: cd examples/atum-examples && mvn scala-cross-build:change-version -Pscala-${{ matrix.scala }}
- name: Build and unit test for Atum Examples
- name: Switch scala to ${{ matrix.scala }} & build and unit test Atum Examples
working-directory: ./examples/atum-examples
if: ${{ ! contains( github.event.pull_request.labels.*.name, 'NoTestNeeded') }}
run: mvn clean install --no-transfer-progress -Pspark-${{ matrix.spark }} -Dspan.scale.factor=10
run: |
mvn scala-cross-build:change-version -Pscala-${{ matrix.scala }}
mvn clean install --no-transfer-progress -Pspark-${{ matrix.spark }} -Dspan.scale.factor=10

0 comments on commit 2d27880

Please sign in to comment.