Skip to content

Commit

Permalink
build: add step to build LLVM 17 base image
Browse files Browse the repository at this point in the history
Signed-off-by: deadprogram <ron@hybridgroup.com>
  • Loading branch information
deadprogram committed Jan 5, 2024
1 parent 6984af4 commit c7c9a76
Showing 1 changed file with 15 additions and 1 deletion.
16 changes: 15 additions & 1 deletion .github/workflows/docker.yml
Original file line number Diff line number Diff line change
@@ -54,7 +54,21 @@ jobs:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build and push
- name: Build and push LLVM base image
uses: docker/build-push-action@v5
with:
target: tinygo-llvm-build
context: .
push: true
tags: |
tinygo/llvm-17
tinygo/llvm-17:latest
ghcr.io/tinygo-org/llvm-17
ghcr.io/tinygo-org/llvm-17:latest
labels: ${{ steps.meta.outputs.labels }}
cache-from: type=gha
cache-to: type=gha,mode=max
- name: Build and push tinygo-dev image
uses: docker/build-push-action@v5
with:
context: .

0 comments on commit c7c9a76

Please sign in to comment.