From 75519de6f46f0ffffe131f713e96d95a23b3c9ca Mon Sep 17 00:00:00 2001 From: John Date: Wed, 10 Nov 2021 21:07:43 +0100 Subject: [PATCH] use buildx+qemu and new build.sh --- .github/workflows/build.yaml | 28 ++++++++++++++++++++-------- 1 file changed, 20 insertions(+), 8 deletions(-) diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index 61b852d7..94373f75 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -10,11 +10,23 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 - - name: configure and build - run: ./make_debian.sh - - name: upload result - uses: actions/upload-artifact@v2 - with: - name: debian packages - path: ebusd*.deb + - name: checkout + uses: actions/checkout@v2 + - name: set up QEMU + uses: docker/setup-qemu-action@v1 + - name: set up buildx + id: buildx + uses: docker/setup-buildx-action@v1 + with: + buildkitd-flags: --debug + - name: platforms + run: echo ${{ steps.buildx.outputs.platforms }} + - name: build + run: cd contrib/docker && ./build.sh release +# - name: configure and build +# run: ./make_debian.sh +# - name: upload result +# uses: actions/upload-artifact@v2 +# with: +# name: debian packages +# path: ebusd*.deb