Skip to content

Commit

Permalink
Merge pull request #531 from LedgerHQ/fix/speculos-builder
Browse files Browse the repository at this point in the history
[ci][fix] Speculos builder workflow
  • Loading branch information
lpascal-ledger authored Dec 5, 2024
2 parents 5d6e138 + 7d53563 commit f081280
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 9 deletions.
22 changes: 14 additions & 8 deletions .github/workflows/speculos-builder.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,13 @@ on:
paths:
- .github/workflows/speculos-builder.yml
- build.Dockerfile
pull_request:
branches:
- master
paths:
- .github/workflows/speculos-builder.yml
- build.Dockerfile


jobs:
build:
Expand All @@ -22,13 +29,12 @@ jobs:
- name: Clone
uses: actions/checkout@v4

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3

- name: Build and push speculos-builder to GitHub Packages
uses: docker/build-push-action@v1
uses: docker/build-push-action@v6
with:
dockerfile: build.Dockerfile
repository: ledgerhq/speculos-builder
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
tag_with_sha: true
tags: latest
push: ${{ github.event_name == 'push' && github.ref == 'refs/heads/master' }}
file: build.Dockerfile
tags: ghcr.io/ledgerhq/speculos-builder:latest
2 changes: 1 addition & 1 deletion build.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
# Support Debian buster & Ubuntu Bionic

FROM docker.io/library/python:3.9-slim
ENV LANG C.UTF-8
ENV LANG=C.UTF-8

RUN export DEBIAN_FRONTEND=noninteractive && \
apt-get update && \
Expand Down

0 comments on commit f081280

Please sign in to comment.