Skip to content

Commit 203c29e

Browse files
authored
Merge pull request #336 from SylvainMartel/main
rust 1.81 update
2 parents b4dc08b + 7f3e0cf commit 203c29e

File tree

6 files changed

+52
-45
lines changed

6 files changed

+52
-45
lines changed

.github/workflows/build.yml

+36-17
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
name: "Indy-VDR"
22

33
env:
4-
RUST_VERSION: "1.70.0"
5-
CROSS_VERSION: "0.2.4"
4+
RUST_VERSION: "1.81.0"
5+
CROSS_VERSION: "0.2.5"
66

77
on:
88
push:
@@ -42,7 +42,7 @@ jobs:
4242
name: Run checks
4343
strategy:
4444
matrix:
45-
os: [macos-12, windows-latest, ubuntu-latest]
45+
os: [macos-13, windows-latest, ubuntu-latest]
4646
runs-on: ${{ matrix.os }}
4747

4848
steps:
@@ -127,11 +127,11 @@ jobs:
127127
# using cross here to build against an older glibc for compatibility
128128
use_cross: true
129129
- architecture: darwin-universal
130-
os: macos-12
130+
os: macos-13
131131
lib: libindy_vdr.dylib
132132
target: darwin-universal
133-
# beta or nightly required for aarch64-apple-darwin target
134-
toolchain: beta
133+
# As of Rust 1.80, aarch64-apple-darwin is stable
134+
toolchain: stable
135135
- architecture: windows-x86_64
136136
os: windows-latest
137137
lib: indy_vdr.dll
@@ -298,7 +298,7 @@ jobs:
298298
build-ios:
299299
name: Build library (iOS)
300300
needs: [checks]
301-
runs-on: macos-12
301+
runs-on: macos-13
302302
strategy:
303303
matrix:
304304
target: [aarch64-apple-ios, aarch64-apple-ios-sim, x86_64-apple-ios]
@@ -321,8 +321,14 @@ jobs:
321321

322322
- name: Build
323323
run: |
324+
# Set RUSTFLAGS to cap lints at warning level to prevent warnings from becoming errors
325+
export RUSTFLAGS="--cap-lints=warn"
324326
cargo build --lib --release --target ${{ matrix.target }} --package indy-vdr
325327
328+
- name: List files in target
329+
run: |
330+
ls -la target/${{ matrix.target }}/release/
331+
326332
- name: Save library
327333
uses: actions/upload-artifact@v4
328334
with:
@@ -331,7 +337,7 @@ jobs:
331337

332338
create-ios-xcframework:
333339
name: Create iOS xcframework
334-
runs-on: macos-12
340+
runs-on: macos-13
335341
needs: build-ios
336342

337343
steps:
@@ -341,10 +347,21 @@ jobs:
341347
- name: Fetch static libraries
342348
uses: actions/download-artifact@v4
343349

350+
- name: Debug - List downloaded files
351+
run: find . -name "*.a" | sort
352+
353+
- name: Debug - Show directory structure
354+
run: |
355+
ls -la
356+
ls -la library-aarch64-apple-ios
357+
ls -la library-aarch64-apple-ios-sim
358+
ls -la library-x86_64-apple-ios
359+
344360
- run: >
345361
./build-xcframework.sh library-aarch64-apple-ios \
346362
library-aarch64-apple-ios-sim \
347363
library-x86_64-apple-ios
364+
348365
- name: Save xcframework
349366
uses: actions/upload-artifact@v4
350367
with:
@@ -362,10 +379,6 @@ jobs:
362379
build-android:
363380
name: Build library (Android)
364381
needs: [checks]
365-
# NB: RUST_VERSION must be <1.68 here to support NDK 17
366-
env:
367-
RUST_VERSION: "1.67"
368-
369382
runs-on: ubuntu-latest
370383
strategy:
371384
matrix:
@@ -385,10 +398,18 @@ jobs:
385398
uses: dtolnay/rust-toolchain@master
386399
with:
387400
toolchain: ${{ env.RUST_VERSION }}
401+
targets: ${{ matrix.target }}
402+
403+
- name: Cache cargo resources
404+
uses: Swatinem/rust-cache@v2
405+
with:
406+
shared-key: deps
407+
save-if: false
388408

389409
- name: Build
390410
run: |
391411
cargo install --bins --git https://github.com/rust-embedded/cross --locked --tag v${{ env.CROSS_VERSION }} cross
412+
# Using default Cross images since custom ones were removed from Cross.toml
392413
cross build --lib --release --target ${{matrix.target}} --package indy-vdr
393414
394415
- name: Save library
@@ -479,9 +500,9 @@ jobs:
479500
- os: ubuntu-latest
480501
architecture: linux-x86_64
481502
plat-name: manylinux2014_x86_64
482-
- os: macos-12
503+
- os: macos-13
483504
architecture: darwin-universal
484-
plat-name: macosx_10_9_universal2 # macosx_10_9_x86_64
505+
plat-name: macosx_10_9_universal2
485506
- os: windows-latest
486507
architecture: windows-x86_64
487508
plat-name: win_amd64
@@ -515,8 +536,6 @@ jobs:
515536
working-directory: wrappers/python
516537

517538
- name: Test python package
518-
# FIXME cross platform test the python package
519-
# maybe use the cross docker image?
520539
if: ${{ matrix.architecture != 'linux-aarch64' }}
521540
shell: sh
522541
run: |
@@ -545,4 +564,4 @@ jobs:
545564
TWINE_PASSWORD: ${{ secrets.PYPI_PASSWORD }}
546565
run: |
547566
twine upload --skip-existing dist/*
548-
working-directory: wrappers/python
567+
working-directory: wrappers/python

Cross.toml

-10
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,4 @@ image = "ghcr.io/rust-cross/manylinux2014-cross:aarch64"
44
[target.x86_64-unknown-linux-gnu]
55
image = "ghcr.io/rust-cross/manylinux2014-cross:x86_64"
66

7-
[target.x86_64-linux-android]
8-
image = "ghcr.io/hyperledger/aries-builder-images/cross/x86_64-linux-android:main"
97

10-
[target.i686-linux-android]
11-
image = "ghcr.io/hyperledger/aries-builder-images/cross/i686-linux-android:main"
12-
13-
[target.aarch64-linux-android]
14-
image = "ghcr.io/hyperledger/aries-builder-images/cross/aarch64-linux-android:main"
15-
16-
[target.armv7-linux-androideabi]
17-
image = "ghcr.io/hyperledger/aries-builder-images/cross/armv7-linux-androideabi:main"

libindy_vdr/Cargo.toml

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "indy-vdr"
3-
version = "0.4.3"
3+
version = "0.4.4"
44
authors = [
55
"Hyperledger Indy Contributors <[email protected]>",
66
]
@@ -30,10 +30,10 @@ default = ["ffi", "log", "zmq_vendored"]
3030
# This is added so we can lock the version that zmq uses
3131
# 0.1.49 is broken for ios targets
3232
cmake = { version = "=0.1.48", optional = true }
33-
base64 = "0.21"
33+
base64 = "0.22"
3434
bs58 = "0.5"
3535
etcommon-rlp = "0.2.4"
36-
env_logger = { version = "0.10", optional = true }
36+
env_logger = { version = "0.11", optional = true }
3737
ffi-support = { version = "0.4", optional = true }
3838
futures-channel = "0.3"
3939
futures-executor = "0.3"
@@ -63,7 +63,7 @@ zmq = "0.9"
6363
sled = "0.34.7"
6464

6565
[dev-dependencies]
66-
rstest = "0.18"
66+
rstest = "0.25"
6767
indy-data-types = { version = "0.7", default-features = false, features = [
6868
"rich_schema",
6969
] }

wrappers/golang/cmd/demo/demo.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ func main() {
2626
}
2727

2828
func readOnlyDemo() {
29-
genesisFile, err := http.Get("https://raw.githubusercontent.com/sovrin-foundation/sovrin/master/sovrin/pool_transactions_builder_genesis")
29+
genesisFile, err := http.Get("http://test.bcovrin.vonx.io/genesis")
3030
if err != nil {
3131
log.Fatalln(err)
3232
}
@@ -50,7 +50,7 @@ func readOnlyDemo() {
5050
d, _ := json.MarshalIndent(status, " ", " ")
5151
fmt.Println(string(d))
5252

53-
rply, err := client.GetNym("FzAaV9Waa1DccDa72qwg13")
53+
rply, err := client.GetNym("EyeymGxWv3YVXXJkjMEXBC")
5454
if err != nil {
5555
log.Fatalln(err)
5656
}

wrappers/python/demo/batch_get_txn.py

+2-3
Original file line numberDiff line numberDiff line change
@@ -102,10 +102,9 @@ def get_script_dir():
102102

103103
def download_buildernet_genesis_file():
104104
genesis_file_url = (
105-
"https://raw.githubusercontent.com/sovrin-foundation/"
106-
"sovrin/master/sovrin/pool_transactions_builder_genesis"
105+
"http://test.bcovrin.vonx.io/genesis"
107106
)
108-
target_local_path = f"{get_script_dir()}/genesis_sov_buildernet.txn"
107+
target_local_path = f"{get_script_dir()}/genesis_bcovrin_testnet.txn"
109108
LOGGER.info("Fetching genesis transactions")
110109
urllib.request.urlretrieve(genesis_file_url, target_local_path)
111110
return target_local_path

wrappers/python/demo/test.py

+8-9
Original file line numberDiff line numberDiff line change
@@ -197,20 +197,20 @@ async def basic_test(transactions_path):
197197
# --- DID Resolution ---
198198

199199
# The DID resolver can be initialized with a dict containing namespaces and pool instances:
200-
# pool_map = await open_pools(ledgers=["idunion", "sovrin:builder"])
200+
# pool_map = await open_pools(ledgers=["idunion", "indicio:testnet"])
201201
# resolver = Resolver(pool_map)
202202

203203
# In addition, the the DID resolver can be started with autopilot = True.
204204
# Then it will try to fetch a genesis file from the did indy networks Github repo
205205
# for the given did:indy namespace.
206206
resolver = Resolver(autopilot=True)
207207

208-
log("Resolve DID did:indy:idunion:test:APs6Xd2GH8FNwCaXDw6Qm2")
209-
doc = await resolver.resolve("did:indy:idunion:test:Fhbr2wQrJeB1UcZeFKpG5F")
208+
log("Resolve DID did:indy:bcovrin:test:EyeymGxWv3YVXXJkjMEXBC")
209+
doc = await resolver.resolve("did:indy:bcovrin:test:EyeymGxWv3YVXXJkjMEXBC")
210210
log(json.dumps(doc, indent=2))
211211

212212
try:
213-
doc = await resolver.resolve("did:indy:idunion:test:APs6Xd2GH8FNwCaXDw6Qm2")
213+
doc = await resolver.resolve("did:indy:bcovrin:test:EyeymGxWv3YVXXJkjMEXBC")
214214
except VdrError as err:
215215
print(err)
216216

@@ -232,12 +232,11 @@ def get_script_dir():
232232
return os.path.dirname(os.path.realpath(__file__))
233233

234234

235-
def download_buildernet_genesis_file():
235+
def download_bcovrin_testnet_genesis_file():
236236
genesis_file_url = (
237-
"https://raw.githubusercontent.com/sovrin-foundation/"
238-
"sovrin/master/sovrin/pool_transactions_builder_genesis"
237+
"http://test.bcovrin.vonx.io/genesis"
239238
)
240-
target_local_path = f"{get_script_dir()}/genesis_sov_buildernet.txn"
239+
target_local_path = f"{get_script_dir()}/genesis_bcovrin_testnet.txn"
241240
urllib.request.urlretrieve(genesis_file_url, target_local_path)
242241
return target_local_path
243242

@@ -246,6 +245,6 @@ def download_buildernet_genesis_file():
246245
log("indy-vdr version:", version())
247246

248247
genesis_path = (
249-
sys.argv[1] if len(sys.argv) > 1 else download_buildernet_genesis_file()
248+
sys.argv[1] if len(sys.argv) > 1 else download_bcovrin_testnet_genesis_file()
250249
)
251250
asyncio.get_event_loop().run_until_complete(basic_test(genesis_path))

0 commit comments

Comments
 (0)