mirror of
https://github.com/bartvdbraak/keyweave.git
synced 2025-04-27 23:01:20 +00:00
feat: build targets for windows, linux, mac-arm
This commit is contained in:
parent
0822f57137
commit
c9219e671c
1 changed files with 13 additions and 27 deletions
40
.github/workflows/deploy.yml
vendored
40
.github/workflows/deploy.yml
vendored
|
@ -11,36 +11,16 @@ jobs:
|
|||
strategy:
|
||||
matrix:
|
||||
name:
|
||||
# - linux-x86-64-gnu
|
||||
# - linux-x86-64-musl
|
||||
# - linux-armhf-gnu
|
||||
# - linux-arm64-gnu
|
||||
- linux-x86-64-gnu
|
||||
- mac-x86-64
|
||||
- mac-arm64
|
||||
- windows-gnu
|
||||
include:
|
||||
# - name: linux-x86-64-gnu
|
||||
# os: ubuntu-20.04
|
||||
# target: x86_64-unknown-linux-gnu
|
||||
# cross: false
|
||||
# experimental: false
|
||||
|
||||
# - name: linux-x86-64-musl
|
||||
# os: ubuntu-latest
|
||||
# target: x86_64-unknown-linux-musl
|
||||
# cross: true
|
||||
# experimental: false
|
||||
|
||||
# - name: linux-armhf-gnu
|
||||
# os: ubuntu-20.04
|
||||
# target: armv7-unknown-linux-gnueabihf
|
||||
# cross: true
|
||||
# experimental: false
|
||||
|
||||
# - name: linux-arm64-gnu
|
||||
# os: ubuntu-20.04
|
||||
# target: aarch64-unknown-linux-gnu
|
||||
# cross: true
|
||||
# experimental: false
|
||||
- name: linux-x86-64-gnu
|
||||
os: ubuntu-20.04
|
||||
target: x86_64-unknown-linux-gnu
|
||||
cross: false
|
||||
experimental: false
|
||||
|
||||
- name: mac-x86-64
|
||||
os: macos-latest
|
||||
|
@ -53,6 +33,12 @@ jobs:
|
|||
target: aarch64-apple-darwin
|
||||
cross: true
|
||||
experimental: true
|
||||
|
||||
- name: windows-gnu
|
||||
os: windows-latest
|
||||
target: x86_64-pc-windows-gnu
|
||||
cross: true
|
||||
experimental: false
|
||||
|
||||
name: Binaries for ${{ matrix.name }}
|
||||
runs-on: ${{ matrix.os }}
|
||||
|
|
Loading…
Reference in a new issue