Skip to content

Commit

Permalink
Can windows/arm64 be cross-compiled?
Browse files Browse the repository at this point in the history
  • Loading branch information
tulir committed Feb 25, 2025
1 parent 06214b6 commit c751d06
Showing 1 changed file with 35 additions and 38 deletions.
73 changes: 35 additions & 38 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,6 @@ name: Build
on:
workflow_dispatch:
push:
tags:
- '*'

defaults:
run:
Expand All @@ -21,43 +19,42 @@ jobs:
fail-fast: true
matrix:
include:
- target: aarch64-apple-ios
runs-on: macos-latest
- target: aarch64-apple-ios-sim
runs-on: macos-latest
- target: x86_64-apple-ios
runs-on: macos-latest

- target: x86_64-apple-darwin
runs-on: macos-latest
- target: aarch64-apple-darwin
runs-on: macos-latest
- target: x86_64-unknown-linux-gnu
runs-on: ubuntu-latest
- target: aarch64-unknown-linux-gnu
runs-on: ubuntu-arm64
- target: x86_64-pc-windows-gnu
# - target: aarch64-apple-ios
# runs-on: macos-latest
# - target: aarch64-apple-ios-sim
# runs-on: macos-latest
# - target: x86_64-apple-ios
# runs-on: macos-latest
#
# - target: x86_64-apple-darwin
# runs-on: macos-latest
# - target: aarch64-apple-darwin
# runs-on: macos-latest
# - target: x86_64-unknown-linux-gnu
# runs-on: ubuntu-latest
# - target: aarch64-unknown-linux-gnu
# runs-on: ubuntu-arm64
# - target: x86_64-pc-windows-gnu
# runs-on: windows-latest
- target: aarch64-pc-windows-gnu
runs-on: windows-latest
# This is missing bash? https://github.com/actions/partner-runner-images/issues/55
#- target: aarch64-pc-windows-gnu
# runs-on: windows-arm64

- target: aarch64-linux-android
android-prefix: aarch64-linux-android
android-env: aarch64_linux_android
runs-on: ubuntu-latest
- target: armv7-linux-androideabi
android-prefix: armv7a-linux-androideabi # same as target, but has "a" after v7
android-env: armv7_linux_androideabi # same as target, but with underscores
runs-on: ubuntu-latest
- target: i686-linux-android
android-prefix: i686-linux-android
android-env: i686_linux_android
runs-on: ubuntu-latest
- target: x86_64-linux-android
android-prefix: x86_64-linux-android
android-env: x86_64_linux_android
runs-on: ubuntu-latest

# - target: aarch64-linux-android
# android-prefix: aarch64-linux-android
# android-env: aarch64_linux_android
# runs-on: ubuntu-latest
# - target: armv7-linux-androideabi
# android-prefix: armv7a-linux-androideabi # same as target, but has "a" after v7
# android-env: armv7_linux_androideabi # same as target, but with underscores
# runs-on: ubuntu-latest
# - target: i686-linux-android
# android-prefix: i686-linux-android
# android-env: i686_linux_android
# runs-on: ubuntu-latest
# - target: x86_64-linux-android
# android-prefix: x86_64-linux-android
# android-env: x86_64_linux_android
# runs-on: ubuntu-latest
name: libsignal-ffi (${{ matrix.target }})

steps:
Expand Down

0 comments on commit c751d06

Please sign in to comment.