pipeline refactor

This commit is contained in:
Greg Gauthier 2023-01-27 16:14:40 +00:00
parent f46211393b
commit e460895b44
1 changed files with 16 additions and 15 deletions

View File

@ -1,17 +1,18 @@
pipelines:
default:
- parallel:
- step:
runs-on:
- self.hosted
- macos
name: Run Webtests
caches:
- maven
script:
- mvn -B verify --file pom.xml
- mvn compiler:compile
- mvn compiler:testCompile
- mvn surefire:test
- export REPORTPATH="target/test-reports/*.*"
- curl -H "Authorization: Bearer ${BEARER_TOKEN}" -X POST "https://api.bitbucket.org/2.0/repositories/${BITBUCKET_REPO_OWNER}/${BITBUCKET_REPO_SLUG}/downloads" --form files=@"${REPORTPATH}"
- step:
name: Build and Test
caches:
- maven
runs-on:
- self.hosted
- macos
script:
- mvn -B verify --file pom.xml
- mvn compiler:compile
- mvn compiler:testCompile
- mvn surefire:test
- export REPORTPATH="target/test-reports/*.*"
- export CMD="curl -H \"Authorization: Bearer ${BEARER_TOKEN}\" -X POST \"https://api.bitbucket.org/2.0/repositories/${BITBUCKET_REPO_OWNER}/${BITBUCKET_REPO_SLUG}/downloads\" --form files=@\"${REPORTPATH}\""
- sh ${CMD}