Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Beta20 #20

Merged
merged 20 commits into from
Jan 21, 2024
8 changes: 2 additions & 6 deletions .github/workflows/cross_compile.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,14 +10,12 @@ on:
jobs:
build-ubuntu:
name: Build on ${{ matrix.os }} for ${{ matrix.goarch }}
runs-on: ${{ matrix.os }}-latest
runs-on: ubuntu-latest #here
strategy:
matrix:
include:
- os: linux
goarch: amd64
- os: linux
goarch: arm64

steps:
- name: Checkout code
Expand Down Expand Up @@ -57,14 +55,12 @@ jobs:
path: output/gensokyo-hunyuan-${{ matrix.os }}-${{ matrix.goarch }}${{ endsWith(matrix.os, 'windows') && '.exe' || '' }}
build-darwin:
name: Build on ${{ matrix.os }} for ${{ matrix.goarch }}
runs-on: darwin-latest
runs-on: macos-latest
strategy:
matrix:
include:
- os: darwin
goarch: amd64
- os: darwin
goarch: arm64

steps:
- name: Checkout code
Expand Down
Loading