forked from signalapp/libsignal
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #18 from gluonhq/patch-v0.40.1
Patch v0.40.1
- Loading branch information
Showing
508 changed files
with
62,875 additions
and
5,101 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
# Prevent auto-merging of generated acknowledgment files | ||
acknowledgments/acknowledgments.* -merge -text | ||
acknowledgments/acknowledgments.*.hbs merge text=auto | ||
|
||
# Treat encrypted and unencrypted message backup files as binary | ||
*.binproto binary | ||
*.binproto.encrypted binary |
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -19,7 +19,7 @@ jobs: | |
runs-on: macos-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v3 | ||
- uses: actions/checkout@v4 | ||
|
||
- id: archive-name | ||
run: echo name=libsignal-client-ios-build-v$(sed -En "s/${VERSION_REGEX}/\1/p" LibSignalClient.podspec).tar.gz >> $GITHUB_OUTPUT | ||
|
@@ -28,6 +28,8 @@ jobs: | |
|
||
- run: rustup toolchain install $(cat rust-toolchain) --profile minimal --target x86_64-apple-ios,aarch64-apple-ios,aarch64-apple-ios-sim --component rust-src | ||
|
||
- run: brew install protobuf | ||
|
||
- name: Build for x86_64-apple-ios | ||
run: swift/build_ffi.sh --release | ||
env: | ||
|
@@ -46,20 +48,21 @@ jobs: | |
- 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' | ||
shell: bash # Explicitly setting the shell turns on pipefail in GitHub Actions | ||
|
||
- uses: google-github-actions/auth@v1 | ||
- uses: google-github-actions/auth@v2 | ||
with: | ||
workload_identity_provider: 'projects/741367068918/locations/global/workloadIdentityPools/github/providers/github-actions' | ||
service_account: '[email protected]' | ||
|
||
- uses: google-github-actions/upload-cloud-storage@v1 | ||
- uses: google-github-actions/upload-cloud-storage@v2 | ||
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 | ||
uses: ncipollo/release-action@66b1844f0b7ef940787c9d128846d5ac09b3881f # v1.14 | ||
with: | ||
allowUpdates: true | ||
artifactErrorsFailBuild: true | ||
|
Oops, something went wrong.