-
Notifications
You must be signed in to change notification settings - Fork 97
36 lines (31 loc) · 1015 Bytes
/
develop.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
name: Push OpenCGA develop
on:
push:
branches:
- develop
- release-*
workflow_dispatch:
jobs:
build:
uses: opencb/java-common-libs/.github/workflows/build-java-app-workflow.yml@develop
with:
maven_opts: -Phdp3.1,RClient -Dopencga.war.name=opencga -Dcheckstyle.skip
## TASK-4970: remove the test job from the develop.yml workflow because it is not needed anymore.
# test:
# uses: ./.github/workflows/test-analysis.yml
# needs: build
# with:
# test_profile: runShortTests,runMediumTests
# secrets: inherit
deploy-maven:
uses: opencb/java-common-libs/.github/workflows/deploy-maven-repository-workflow.yml@develop
needs: build
with:
maven_opts: -P hdp3.1 -Dopencga.war.name=opencga
secrets: inherit
deploy-docker:
uses: opencb/java-common-libs/.github/workflows/deploy-docker-hub-workflow.yml@develop
needs: build
with:
cli: python3 ./build/cloud/docker/docker-build.py push --images base,init
secrets: inherit