[DO NOT MERGE] Isolate previously-failing integration test #12
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# The workflow to check pull requests | |
# This checks the source in the state as if after the merge. | |
name: Pull request checks | |
on: | |
pull_request: | |
branches: [ github-actions ] | |
# Disallow concurrent runs for the same PR by cancelling in-progress runs | |
# when new commits are pushed | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | |
cancel-in-progress: true | |
jobs: | |
build: | |
name: Build | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
- name: Set up JDK 8 | |
uses: actions/setup-java@v4 | |
with: | |
distribution: 'adopt' | |
java-version: 8 | |
cache: maven | |
- name: Build (Maven) | |
run: mvn --batch-mode clean package -DskipTests | |
- name: Unit tests (Maven) | |
run: mvn --batch-mode test | |
- name: Integration tests (Maven) | |
env: | |
# Necessary for client builder integration tests that run with | |
# default application credentials | |
CREDENTIALS_JSON: ${{ secrets.KCBQ_TEST_KEYFILE }} | |
GOOGLE_APPLICATION_CREDENTIALS: /tmp/creds.json | |
KCBQ_TEST_KEYFILE: /tmp/creds.json | |
KCBQ_TEST_KEY_SOURCE: FILE | |
KCBQ_TEST_PROJECT: ${{ secrets.KCBQ_TEST_PROJECT }} | |
KCBQ_TEST_DATASET: ${{ secrets.KCBQ_TEST_DATASET }} | |
KCBQ_TEST_BUCKET: ${{ secrets.KCBQ_TEST_BUCKET }} | |
run: | | |
echo "$CREDENTIALS_JSON" > /tmp/creds.json | |
mvn --batch-mode -Dskip.unit.tests=true verify -Dit.test=GcpClientBuilderIT |