Skip to content

Commit

Permalink
CI debugging
Browse files Browse the repository at this point in the history
  • Loading branch information
plvines committed Dec 20, 2024
1 parent 21d5eeb commit 254ef84
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,6 @@ jobs:
uses: docker/build-push-action@v4
with:
context: /home/runner/work/raceboat/raceboat
# context: "{{defaultContext}}:raceboat-compile-image"
file: raceboat-compile-image/Dockerfile
platforms: linux/amd64
push: ${{ github.event_name != 'pull_request' }}
Expand All @@ -161,7 +160,7 @@ jobs:
cache-to: ${{ steps.cache.outputs.cache-to }}

runtime-image:
needs: [build-framework]
needs: [compile-image]
runs-on: ubuntu-latest
steps:
- name: Checkout
Expand Down Expand Up @@ -225,14 +224,16 @@ jobs:
uses: docker/build-push-action@v4
with:
context: /home/runner/work/raceboat/raceboat
# context: "{{defaultContext}}:raceboat-runtime-image"
file: raceboat-runtime-image/Dockerfile
platforms: linux/amd64
push: ${{ github.event_name != 'pull_request' }}
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
cache-from: ${{ steps.cache.outputs.cache-from }}
cache-to: ${{ steps.cache.outputs.cache-to }}
build-contexts: ghcr.io/tst-race/raceboat/raceboat-compile:latest=ghcr.io/tst-race/raceboat/raceboat-compile:${{ steps.meta.outputs.tags }}



# # todo base these on the raceboat image
# test-unit:
Expand Down

0 comments on commit 254ef84

Please sign in to comment.