feat: Build on more available architectures #87
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build | |
on: | |
release: | |
types: [created] | |
push: | |
pull_request: | |
types: [opened, edited] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
include: | |
- arch: x86_64 | |
- arch: x86 | |
- arch: armhf | |
- arch: aarch64 | |
- arch: armv7 | |
- arch: ppc64le | |
- arch: s390x | |
name: Build on ${{ matrix.arch }} | |
steps: | |
- name: Git Checkout | |
uses: actions/checkout@v4 | |
with: | |
submodules: 'true' | |
- name: Setup Docker | |
run: | | |
docker run --rm --privileged multiarch/qemu-user-static:register --reset --credential yes | |
- name: Build in Docker | |
run: | | |
docker run --workdir /github/workspace --rm --entrypoint "./.github/scripts/build.sh" -v "$(pwd)":"/github/workspace" multiarch/alpine:${{ matrix.arch }}-edge | |
- name: Upload Binary | |
if: github.event_name != 'release' | |
uses: actions/upload-artifact@v4 | |
with: | |
name: dpitunnel-${{ matrix.arch }} | |
path: build/dpitunnel | |
- name: Upload Binary to Release | |
if: github.event_name == 'release' | |
uses: svenstaro/[email protected] | |
with: | |
repo_token: ${{ secrets.GITHUB_TOKEN }} | |
file: build/dpitunnel | |
asset_name: dpitunnel-${{ matrix.arch }} | |
tag: ${{ github.ref }} |