storage: Do not produce a .crc checksum file copying from hdfs. #TASK… #2388
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: | |
# WARNING Develop branch needed for prod | |
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 | |
test: | |
uses: ./.github/workflows/test-analysis.yml | |
needs: build | |
with: | |
test_profile: runShortTests | |
secrets: inherit | |
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 |