mirror of
https://github.com/apernet/hysteria.git
synced 2025-04-03 04:27:39 +03:00
ci: build all platforms
This commit is contained in:
parent
353aacfd62
commit
26fdba6049
2 changed files with 38 additions and 10 deletions
18
.github/workflows/dev-build-hy2.yml
vendored
18
.github/workflows/dev-build-hy2.yml
vendored
|
@ -1,12 +1,11 @@
|
|||
name: "Build WIP Hysteria 2"
|
||||
name: "Build Hysteria 2"
|
||||
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- 'wip-hy2'
|
||||
- "wip-hy2"
|
||||
|
||||
jobs:
|
||||
|
||||
build:
|
||||
name: Build
|
||||
runs-on: ubuntu-latest
|
||||
|
@ -14,27 +13,26 @@ jobs:
|
|||
ACTIONS_ALLOW_UNSECURE_COMMANDS: true
|
||||
|
||||
steps:
|
||||
|
||||
- name: Check out
|
||||
uses: actions/checkout@v3
|
||||
|
||||
- name: Setup Go
|
||||
uses: actions/setup-go@v4
|
||||
with:
|
||||
go-version: '1.20'
|
||||
go-version: "1.21"
|
||||
|
||||
- name: Setup Python # This is for the build script
|
||||
uses: actions/setup-python@v4
|
||||
with:
|
||||
python-version: '3.11'
|
||||
python-version: "3.11"
|
||||
|
||||
- name: Run build script
|
||||
env:
|
||||
HY_APP_PLATFORMS: 'windows/amd64,linux/amd64,linux/arm64,darwin/amd64,darwin/arm64'
|
||||
run: 'python hyperbole.py build -r'
|
||||
run: |
|
||||
export HY_APP_PLATFORMS=$(sed 's/\r$//' platforms.txt | awk '!/^#/ && !/^$/' | paste -sd ",")
|
||||
python hyperbole.py build -r
|
||||
|
||||
- name: Archive
|
||||
uses: actions/upload-artifact@v3
|
||||
with:
|
||||
name: hy2-wip-${{ github.sha }}
|
||||
path: build
|
||||
path: build
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue