Skip to content

Commit

Permalink
Merge pull request #445 from robbiet480/patch-5
Browse files Browse the repository at this point in the history
add armv7 builds, switch to official buildx action and stop building nightly
  • Loading branch information
robotastic authored Mar 24, 2021
2 parents 80e8169 + 711ce59 commit bde84b3
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 6 deletions.
13 changes: 8 additions & 5 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
name: buildx

on:
schedule:
- cron: '0 10 * * *' # everyday at 10am
pull_request:
branches: master
push:
Expand All @@ -23,7 +21,7 @@ jobs:
id: prepare
run: |
DOCKER_IMAGE=robotastic/trunk-recorder
DOCKER_PLATFORMS=linux/amd64,linux/arm64
DOCKER_PLATFORMS=linux/amd64,linux/arm64,linux/arm/v7
VERSION=edge
if [[ $GITHUB_REF == refs/tags/* ]]; then
Expand All @@ -45,9 +43,14 @@ jobs:
--build-arg BUILD_DATE=$(date -u +'%Y-%m-%dT%H:%M:%SZ') \
--build-arg VCS_REF=${GITHUB_SHA::8} \
${TAGS} --file ./Dockerfile .
-
# https://github.com/docker/setup-qemu-action
-
name: Set up QEMU
uses: docker/setup-qemu-action@v1
# https://github.com/docker/setup-buildx-action
-
name: Set up Docker Buildx
uses: crazy-max/ghaction-docker-buildx@v3
uses: docker/setup-buildx-action@v1
-
name: Cache Docker layers
uses: actions/cache@v2
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM robotastic/gnuradio:latest
FROM robotastic/gnuradio:nightly

WORKDIR /src

Expand Down

0 comments on commit bde84b3

Please sign in to comment.