Skip to content

Commit

Permalink
publish build scans in CI (#691)
Browse files Browse the repository at this point in the history
  • Loading branch information
sherifnada authored Oct 23, 2020
1 parent 4d1a788 commit e20cf1a
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/gradle.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,17 +44,18 @@ jobs:
GH_INTEGRATION_TEST_CREDS: ${{ secrets.GH_INTEGRATION_TEST_CREDS }}

- name: Build
run: ./gradlew --no-daemon build
run: ./gradlew --no-daemon build --scan


- name: Ensure no file change
run: git status --porcelain && test -z "$(git status --porcelain)"

- name: Run Integration Tests
run: ./gradlew --no-daemon integrationTest
run: ./gradlew --no-daemon integrationTest --scan

- name: Build Core Docker Images
if: success() && github.ref == 'refs/heads/master'
run: ./gradlew --no-daemon composeBuild
run: ./gradlew --no-daemon composeBuild --scan
env:
GIT_REVISION: ${{ github.sha }}

Expand Down
2 changes: 1 addition & 1 deletion tools/bin/acceptance_test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -22,4 +22,4 @@ echo "Waiting for services to begin"
sleep 10 # TODO need a better way to wait

echo "Running e2e tests via gradle"
./gradlew --no-daemon :airbyte-tests:acceptanceTests
./gradlew --no-daemon :airbyte-tests:acceptanceTests --scan

0 comments on commit e20cf1a

Please sign in to comment.