Build iOS Artifacts #16
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build iOS Artifacts | |
on: | |
workflow_dispatch: {} # no parameters | |
env: | |
CARGO_TERM_COLOR: always | |
jobs: | |
build: | |
name: Build | |
permissions: | |
# Needed for ncipollo/release-action. | |
contents: 'write' | |
# Needed for google-github-actions/auth. | |
id-token: 'write' | |
runs-on: macos-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- id: archive-name | |
run: echo name=libsignal-client-ios-build-v$(sed -En "s/${VERSION_REGEX}/\1/p" LibSignalClient.podspec).tar.gz >> $GITHUB_OUTPUT | |
env: | |
VERSION_REGEX: "^.*[.]version += '(.+)'$" | |
- run: rustup toolchain install $(cat rust-toolchain) --profile minimal --target x86_64-apple-ios,aarch64-apple-ios,aarch64-apple-ios-sim --component rust-src | |
- name: Build for x86_64-apple-ios | |
run: swift/build_ffi.sh --release | |
env: | |
CARGO_BUILD_TARGET: x86_64-apple-ios | |
- name: Build for aarch64-apple-ios | |
run: swift/build_ffi.sh --release | |
env: | |
CARGO_BUILD_TARGET: aarch64-apple-ios | |
- name: Build for aarch64-apple-ios-sim | |
run: swift/build_ffi.sh --release | |
env: | |
CARGO_BUILD_TARGET: aarch64-apple-ios-sim | |
- name: Build for x86_64-apple-ios-macabi | |
run: swift/build_ffi.sh --release --build-std | |
env: | |
CARGO_BUILD_TARGET: x86_64-apple-ios-macabi | |
- name: Build for aarch64-apple-ios-macabi | |
run: swift/build_ffi.sh --release --build-std | |
env: | |
CARGO_BUILD_TARGET: aarch64-apple-ios-macabi | |
- run: tar -c --auto-compress --no-mac-metadata -f ${{ steps.archive-name.outputs.name }} target/*/release/libsignal_ffi.a | |
- run: 'shasum -a 256 ${{ steps.archive-name.outputs.name }} | tee -a $GITHUB_STEP_SUMMARY ${{ steps.archive-name.outputs.name }}.sha256' | |
- uses: google-github-actions/auth@v1 | |
with: | |
workload_identity_provider: 'projects/741367068918/locations/global/workloadIdentityPools/github/providers/github-actions' | |
service_account: 'github-actions@signal-build-artifacts.iam.gserviceaccount.com' | |
- uses: google-github-actions/upload-cloud-storage@v1 | |
with: | |
path: ${{ steps.archive-name.outputs.name }} | |
destination: build-artifacts.signal.org/libraries | |
# This step is expected to fail if not run on a tag. | |
- name: Upload checksum to release | |
uses: ncipollo/release-action@4c75f0f2e4ae5f3c807cf0904605408e319dcaac # v1.11.1 | |
with: | |
allowUpdates: true | |
artifactErrorsFailBuild: true | |
artifacts: ${{ steps.archive-name.outputs.name }}.sha256 |