mirror of
https://github.com/bartvdbraak/keyweave.git
synced 2025-04-29 07:41:21 +00:00
Merge pull request #5 from bartvdbraak/feat/windows-linux-targets
feat: build targets for windows, linux, mac-arm
This commit is contained in:
commit
b130626cc3
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:
|
strategy:
|
||||||
matrix:
|
matrix:
|
||||||
name:
|
name:
|
||||||
# - linux-x86-64-gnu
|
- linux-x86-64-gnu
|
||||||
# - linux-x86-64-musl
|
|
||||||
# - linux-armhf-gnu
|
|
||||||
# - linux-arm64-gnu
|
|
||||||
- mac-x86-64
|
- mac-x86-64
|
||||||
- mac-arm64
|
- mac-arm64
|
||||||
|
- windows-gnu
|
||||||
include:
|
include:
|
||||||
# - name: linux-x86-64-gnu
|
- name: linux-x86-64-gnu
|
||||||
# os: ubuntu-20.04
|
os: ubuntu-20.04
|
||||||
# target: x86_64-unknown-linux-gnu
|
target: x86_64-unknown-linux-gnu
|
||||||
# cross: false
|
cross: false
|
||||||
# experimental: 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: mac-x86-64
|
- name: mac-x86-64
|
||||||
os: macos-latest
|
os: macos-latest
|
||||||
|
@ -53,6 +33,12 @@ jobs:
|
||||||
target: aarch64-apple-darwin
|
target: aarch64-apple-darwin
|
||||||
cross: true
|
cross: true
|
||||||
experimental: true
|
experimental: true
|
||||||
|
|
||||||
|
- name: windows-gnu
|
||||||
|
os: windows-latest
|
||||||
|
target: x86_64-pc-windows-gnu
|
||||||
|
cross: true
|
||||||
|
experimental: false
|
||||||
|
|
||||||
name: Binaries for ${{ matrix.name }}
|
name: Binaries for ${{ matrix.name }}
|
||||||
runs-on: ${{ matrix.os }}
|
runs-on: ${{ matrix.os }}
|
||||||
|
|
Loading…
Reference in a new issue