ci: build all platforms

This commit is contained in:
Toby 2023-08-29 20:15:27 -07:00
parent 353aacfd62
commit 26fdba6049
2 changed files with 38 additions and 10 deletions

View file

@ -1,12 +1,11 @@
name: "Build WIP Hysteria 2" name: "Build Hysteria 2"
on: on:
push: push:
branches: branches:
- 'wip-hy2' - "wip-hy2"
jobs: jobs:
build: build:
name: Build name: Build
runs-on: ubuntu-latest runs-on: ubuntu-latest
@ -14,24 +13,23 @@ jobs:
ACTIONS_ALLOW_UNSECURE_COMMANDS: true ACTIONS_ALLOW_UNSECURE_COMMANDS: true
steps: steps:
- name: Check out - name: Check out
uses: actions/checkout@v3 uses: actions/checkout@v3
- name: Setup Go - name: Setup Go
uses: actions/setup-go@v4 uses: actions/setup-go@v4
with: with:
go-version: '1.20' go-version: "1.21"
- name: Setup Python # This is for the build script - name: Setup Python # This is for the build script
uses: actions/setup-python@v4 uses: actions/setup-python@v4
with: with:
python-version: '3.11' python-version: "3.11"
- name: Run build script - name: Run build script
env: run: |
HY_APP_PLATFORMS: 'windows/amd64,linux/amd64,linux/arm64,darwin/amd64,darwin/arm64' export HY_APP_PLATFORMS=$(sed 's/\r$//' platforms.txt | awk '!/^#/ && !/^$/' | paste -sd ",")
run: 'python hyperbole.py build -r' python hyperbole.py build -r
- name: Archive - name: Archive
uses: actions/upload-artifact@v3 uses: actions/upload-artifact@v3

30
platforms.txt Normal file
View file

@ -0,0 +1,30 @@
# This file controls what platform/architecture combinations we build for a release.
# Windows
windows/amd64
windows/amd64-avx
windows/386
windows/arm64
# macOS
darwin/amd64
darwin/amd64-avx
darwin/arm64
# Linux
linux/amd64
linux/amd64-avx
linux/386
linux/arm
linux/armv5
linux/arm64
linux/s390x
linux/mipsle
linux/mipsle-sf
# FreeBSD
freebsd/amd64
freebsd/amd64-avx
freebsd/386
freebsd/arm
freebsd/arm64