forked from hyperledger/anoncreds-rs
-
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.
build: update rust and uniffi version
- Loading branch information
1 parent
13c746a
commit 09a25ae
Showing
7 changed files
with
1,536 additions
and
1,230 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 |
---|---|---|
@@ -1,7 +1,7 @@ | ||
name: "Anoncreds" | ||
|
||
env: | ||
RUST_VERSION: "1.65.0" | ||
RUST_VERSION: "1.73.0" | ||
CROSS_VERSION: "0.2.4" | ||
|
||
on: | ||
|
@@ -107,8 +107,8 @@ jobs: | |
- name: Release artifacts | ||
uses: a7ul/[email protected] | ||
if: | | ||
(${{ matrix.architecture }} != 'swift-package-universal' && | ||
github.event_name == 'release' || | ||
matrix.architecture != 'swift-package-universal' && | ||
(github.event_name == 'release' || | ||
(github.event_name == 'workflow_dispatch' && github.event.inputs.publish-binaries == 'true')) | ||
with: | ||
command: c | ||
|
@@ -118,8 +118,8 @@ jobs: | |
|
||
- name: Add library artifacts to release | ||
if: | | ||
(${{ matrix.architecture }} != 'swift-package-universal' && | ||
github.event_name == 'release' || | ||
matrix.architecture != 'swift-package-universal' && | ||
(github.event_name == 'release' || | ||
(github.event_name == 'workflow_dispatch' && github.event.inputs.publish-binaries == 'true')) | ||
uses: svenstaro/upload-release-action@v2 | ||
with: | ||
|
@@ -128,10 +128,10 @@ jobs: | |
|
||
- name: Add swift package artifacts to release | ||
if: | | ||
(${{ matrix.architecture }} == 'swift-package-universal' && | ||
github.event_name == 'release' || | ||
matrix.architecture == 'swift-package-universal' && | ||
(github.event_name == 'release' || | ||
(github.event_name == 'workflow_dispatch' && github.event.inputs.publish-binaries == 'true')) | ||
uses: svenstaro/upload-release-action@v2 | ||
with: | ||
file: ${{ matrix.lib }} | ||
file: ${{ matrix.libPath }} | ||
asset_name: "${{ matrix.lib }}" |
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
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 |
---|---|---|
@@ -1,3 +1,3 @@ | ||
fn main() { | ||
uniffi_build::generate_scaffolding("./src/anoncreds.udl").unwrap(); | ||
uniffi::generate_scaffolding("./src/anoncreds.udl").unwrap(); | ||
} |
Oops, something went wrong.