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

trying windows release #49

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 19 additions & 5 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,9 @@ jobs:
- aarch64-apple-darwin
- x86_64-apple-darwin
- x86_64-unknown-linux-musl
# - aarch64-unknown-linux-musl
- x86_64-pc-windows-gnu
- x86_64-pc-windows-msvc
include:
- target: aarch64-apple-darwin
os: macos-latest
Expand All @@ -27,6 +30,17 @@ jobs:
- target: x86_64-unknown-linux-musl
os: ubuntu-latest
target_rustflags: ''
# - target: aarch64-unknown-linux-musl
# os: ubuntu-latest
# target_rustflags: ''
- target: x86_64-pc-windows-gnu
os: windows-latest
target_rustflags: ''
ext: .exe
- target: x86_64-pc-windows-msvc
os: windows-latest
target_rustflags: ''
ext: .exe

runs-on: ${{matrix.os}}

Expand All @@ -40,11 +54,11 @@ jobs:
target: ${{ matrix.target }}
toolchain: stable

- name: Install AArch64 Toolchain
if: ${{ matrix.target == 'aarch64-unknown-linux-musl' }}
run: |
sudo apt-get update
sudo apt-get install gcc-aarch64-linux-gnu
# - name: Install AArch64 Toolchain
# if: ${{ matrix.target == 'aarch64-unknown-linux-musl' }}
# run: |
# sudo apt-get update
# sudo apt-get install gcc-aarch64-linux-gnu

- name: Install ARM7 Toolchain
if: ${{ matrix.target == 'armv7-unknown-linux-musleabihf' }}
Expand Down
Loading