cicd: Change default hadoop flavour from hdp3.1 to emr6.1 #TASK-7330 #2495
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Push OpenCGA TASK | ||
on: | ||
push: | ||
branches: | ||
- TASK-* | ||
workflow_dispatch: | ||
env: | ||
# We must use hdp3.1 for the task branch for the docker build step | ||
HADOOP_FLAVOUR: hdp3.1 | ||
# WARNING Develop branch needed for prod | ||
jobs: | ||
build: | ||
uses: opencb/java-common-libs/.github/workflows/build-java-app-workflow.yml@develop | ||
with: | ||
maven_opts: -P storage-hadoop,${{ env.HADOOP_FLAVOUR }},RClient,opencga-storage-hadoop-deps -Dopencga.war.name=opencga -Dcheckstyle.skip -pl '!:opencga-app' --also-make | ||
Check failure on line 19 in .github/workflows/task.yml GitHub Actions / Push OpenCGA TASKInvalid workflow file
|
||
test: | ||
uses: ./.github/workflows/test-analysis.yml | ||
needs: build | ||
secrets: inherit | ||
with: | ||
test_profile: runShortTests | ||
deploy-docker: | ||
uses: opencb/java-common-libs/.github/workflows/deploy-docker-hub-workflow.yml@develop | ||
needs: test | ||
with: | ||
cli: python3 ./build/cloud/docker/docker-build.py push --images base,init --tag ${{ github.ref_name }} | ||
secrets: inherit |