-
Notifications
You must be signed in to change notification settings - Fork 97
43 lines (37 loc) · 1.38 KB
/
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
37
38
39
40
41
42
43
name: Push OpenCGA develop
on:
push:
branches:
- develop
- release-*
workflow_dispatch:
jobs:
build:
uses: opencb/java-common-libs/.github/workflows/[email protected]
with:
maven_opts: -P storage-hadoop,hdp3.1,RClient,opencga-storage-hadoop-deps -Dopencga.war.name=opencga -Dcheckstyle.skip -pl '!:opencga-storage-hadoop-deps-emr6.1,!:opencga-storage-hadoop-deps-hdp2.6'
deploy-docker-ext-tools:
uses: opencb/java-common-libs/.github/workflows/[email protected]
needs: build
with:
cli: python3 ./build/cloud/docker/docker-build.py push --images ext-tools --tag ${{ needs.build.outputs.version }}
secrets: inherit
test:
uses: ./.github/workflows/test-analysis.yml
needs: deploy-docker-ext-tools
secrets: inherit
with:
test_profile: runShortTests,runMediumTests
report_context: development
deploy-maven:
uses: opencb/java-common-libs/.github/workflows/[email protected]
needs: test
with:
maven_opts: -P storage-hadoop,hdp3.1 -Dopencga.war.name=opencga
secrets: inherit
deploy-docker:
uses: opencb/java-common-libs/.github/workflows/[email protected]
needs: test
with:
cli: python3 ./build/cloud/docker/docker-build.py push --images base,init
secrets: inherit