From 3454dc8f58c2c3da7def13e930970dd6ab4c8f9e Mon Sep 17 00:00:00 2001 From: Ben Donnelly Date: Fri, 29 Sep 2023 15:34:24 +0100 Subject: [PATCH] fix(build): update build to ensure agent is built for cf-tests --- .github/workflows/cf_tests.yml | 2 -- Makefile | 2 +- 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/.github/workflows/cf_tests.yml b/.github/workflows/cf_tests.yml index 9778ff0..56f4099 100644 --- a/.github/workflows/cf_tests.yml +++ b/.github/workflows/cf_tests.yml @@ -14,7 +14,5 @@ jobs: java-version: '11' distribution: 'temurin' cache: 'maven' - - name: Build agent - run: make package-agent - name: Run CF Tests run: make cf-tests \ No newline at end of file diff --git a/Makefile b/Makefile index 6970307..d2a47c8 100644 --- a/Makefile +++ b/Makefile @@ -21,7 +21,7 @@ package: mvn package -U -B -pl agent --also-make -DskipTests $(MVN_ARGS) .PHONY: cf-tests -cf-tests: +cf-tests: package mvn verify -U -B -P cf-it-tests -pl it-tests/cf-tests --also-make $(MVN_ARGS) # This file just contains shortcuts for dev, as there are a lot of options for different builds