fix lag befor download nodes-b.json (#2198) #3
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: RC | |
on: | |
push: | |
branches: [master, ci-build-rc] | |
concurrency: | |
group: ${{ github.workflow }} | |
cancel-in-progress: true | |
jobs: | |
build: | |
if: > | |
!contains(github.event.head_commit.message, '#skip-ci') | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
submodules: recursive | |
- uses: docker/build-push-action@v4 | |
with: | |
tags: mycelium_builder:latest | |
push: false | |
context: ${{ github.workspace }} | |
- uses: addnab/docker-run-action@v3 | |
with: | |
image: mycelium_builder:latest | |
options: > | |
--volume ${{ github.workspace }}:/app/ | |
--device /dev/fuse --cap-add SYS_ADMIN --security-opt apparmor:unconfined | |
run: | | |
mkdir /project/ | |
disorderfs --sort-dirents=yes --reverse-dirents=no /app/ /project/; | |
cd /project/ | |
./gradlew clean test mbw::assembleProdnetRelease mbw::assembleBtctestnetRelease mbw::assembleProdnetDebug mbw::assembleBtctestnetDebug | |
- uses: actions/upload-artifact@v3 | |
with: | |
path: mbw/build/outputs/ |