1
1
name : " Indy-VDR"
2
2
3
3
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 "
6
6
7
7
on :
8
8
push :
42
42
name : Run checks
43
43
strategy :
44
44
matrix :
45
- os : [macos-12 , windows-latest, ubuntu-latest]
45
+ os : [macos-13 , windows-latest, ubuntu-latest]
46
46
runs-on : ${{ matrix.os }}
47
47
48
48
steps :
@@ -127,11 +127,11 @@ jobs:
127
127
# using cross here to build against an older glibc for compatibility
128
128
use_cross : true
129
129
- architecture : darwin-universal
130
- os : macos-12
130
+ os : macos-13
131
131
lib : libindy_vdr.dylib
132
132
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
135
135
- architecture : windows-x86_64
136
136
os : windows-latest
137
137
lib : indy_vdr.dll
@@ -298,7 +298,7 @@ jobs:
298
298
build-ios :
299
299
name : Build library (iOS)
300
300
needs : [checks]
301
- runs-on : macos-12
301
+ runs-on : macos-13
302
302
strategy :
303
303
matrix :
304
304
target : [aarch64-apple-ios, aarch64-apple-ios-sim, x86_64-apple-ios]
@@ -321,8 +321,14 @@ jobs:
321
321
322
322
- name : Build
323
323
run : |
324
+ # Set RUSTFLAGS to cap lints at warning level to prevent warnings from becoming errors
325
+ export RUSTFLAGS="--cap-lints=warn"
324
326
cargo build --lib --release --target ${{ matrix.target }} --package indy-vdr
325
327
328
+ - name : List files in target
329
+ run : |
330
+ ls -la target/${{ matrix.target }}/release/
331
+
326
332
- name : Save library
327
333
uses : actions/upload-artifact@v4
328
334
with :
@@ -331,7 +337,7 @@ jobs:
331
337
332
338
create-ios-xcframework :
333
339
name : Create iOS xcframework
334
- runs-on : macos-12
340
+ runs-on : macos-13
335
341
needs : build-ios
336
342
337
343
steps :
@@ -341,10 +347,21 @@ jobs:
341
347
- name : Fetch static libraries
342
348
uses : actions/download-artifact@v4
343
349
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
+
344
360
- run : >
345
361
./build-xcframework.sh library-aarch64-apple-ios \
346
362
library-aarch64-apple-ios-sim \
347
363
library-x86_64-apple-ios
364
+
348
365
- name : Save xcframework
349
366
uses : actions/upload-artifact@v4
350
367
with :
@@ -362,10 +379,6 @@ jobs:
362
379
build-android :
363
380
name : Build library (Android)
364
381
needs : [checks]
365
- # NB: RUST_VERSION must be <1.68 here to support NDK 17
366
- env :
367
- RUST_VERSION : " 1.67"
368
-
369
382
runs-on : ubuntu-latest
370
383
strategy :
371
384
matrix :
@@ -385,10 +398,18 @@ jobs:
385
398
uses : dtolnay/rust-toolchain@master
386
399
with :
387
400
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
388
408
389
409
- name : Build
390
410
run : |
391
411
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
392
413
cross build --lib --release --target ${{matrix.target}} --package indy-vdr
393
414
394
415
- name : Save library
@@ -479,9 +500,9 @@ jobs:
479
500
- os : ubuntu-latest
480
501
architecture : linux-x86_64
481
502
plat-name : manylinux2014_x86_64
482
- - os : macos-12
503
+ - os : macos-13
483
504
architecture : darwin-universal
484
- plat-name : macosx_10_9_universal2 # macosx_10_9_x86_64
505
+ plat-name : macosx_10_9_universal2
485
506
- os : windows-latest
486
507
architecture : windows-x86_64
487
508
plat-name : win_amd64
@@ -515,8 +536,6 @@ jobs:
515
536
working-directory : wrappers/python
516
537
517
538
- name : Test python package
518
- # FIXME cross platform test the python package
519
- # maybe use the cross docker image?
520
539
if : ${{ matrix.architecture != 'linux-aarch64' }}
521
540
shell : sh
522
541
run : |
@@ -545,4 +564,4 @@ jobs:
545
564
TWINE_PASSWORD: ${{ secrets.PYPI_PASSWORD }}
546
565
run: |
547
566
twine upload --skip-existing dist/*
548
- working-directory: wrappers/python
567
+ working-directory: wrappers/python
0 commit comments