CI triggered from @diegoximenes of fix_ci_cache #119
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: CI | |
run-name: CI triggered from @${{ github.actor }} of ${{ github.head_ref }} | |
on: | |
workflow_dispatch: | |
merge_group: | |
pull_request: | |
push: | |
branches: | |
- master | |
- develop | |
jobs: | |
build_and_run: | |
runs-on: ubuntu-8 | |
strategy: | |
matrix: | |
pos: [true, false] | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
submodules: recursive | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v3 | |
with: | |
driver-opts: network=host | |
- name: Cache Docker layers | |
uses: actions/cache@v3 | |
with: | |
path: /tmp/.buildx-cache | |
key: ${{ runner.os }}-buildx-${{ hashFiles('**/Dockerfile') }} | |
restore-keys: ${{ runner.os }}-buildx- | |
- name: ls1 | |
run: ls /tmp/.buildx-cache | |
- name: Build | |
run: docker buildx bake --file docker-compose.yaml --file docker-compose-ci-cache.json scripts | |
- name: ls2 | |
run: ls /tmp/.buildx-cache | |
# - name: Startup Nitro testnode | |
# run: ${{ github.workspace }}/.github/workflows/testnode.bash ${{ matrix.pos == true && '--pos' || '' }} | |
# - # Temp fix | |
# # https://github.com/docker/build-push-action/issues/252 | |
# # https://github.com/moby/buildkit/issues/1896 | |
# name: Move cache | |
# run: | | |
# rm -rf /tmp/.buildx-cache | |
# mv /tmp/.buildx-cache-new /tmp/.buildx-cache |