From 8f459af897d0faa10b8aa3e2cc65a20912d89567 Mon Sep 17 00:00:00 2001 From: Sid Narayan Date: Tue, 16 Jun 2020 10:07:57 -0700 Subject: [PATCH] Run integ tests as part of git workflow instead of build This commit makes it so that you can build PA without running integration tests. This is useful for many reasons, including being able to build RCA without depending on PA's integration tests and dramatically reducing build times. Integration Testing has been added as part of the Github Actions workflow --- .github/workflows/gradle.yml | 4 +++- build.gradle | 2 -- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/gradle.yml b/.github/workflows/gradle.yml index 09d3d630..a63c008d 100644 --- a/.github/workflows/gradle.yml +++ b/.github/workflows/gradle.yml @@ -4,7 +4,6 @@ on: push: branches: - master - pull_request: branches: - master @@ -49,3 +48,6 @@ jobs: - name: Start Build working-directory: ./tmp/pa run: ./gradlew build + - name: Run Integration Tests + working-directory: ./tmp/pa + run: ./gradlew integTest diff --git a/build.gradle b/build.gradle index f00f4e48..9a5970c0 100644 --- a/build.gradle +++ b/build.gradle @@ -267,5 +267,3 @@ afterEvaluate { tasks = ['build', 'buildRpm', 'buildDeb'] } } - -check.dependsOn integTest