forked from TBD54566975/tbdex-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.
Issue TBD54566975#94: Try to upload file reference directly
- Loading branch information
1 parent
80b2aa0
commit eb00822
Showing
1 changed file
with
8 additions
and
4 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 |
---|---|---|
|
@@ -46,11 +46,15 @@ jobs: | |
with: | ||
name: tbdex.kt | ||
path: target/bindgen-kotlin/tbdex/sdk/rust/tbdex.kt | ||
- name: Debug Logging | ||
run: ls -l target/aarch64-apple-darwin/release/libtbdex_uniffi.dylib | ||
#TODO We need one of these for every environment built | ||
- name: Upload Native Library | ||
uses: actions/[email protected] | ||
if: ${{ matrix.os == 'macos-latest' }} | ||
with: | ||
name: libtbdex_uniffi_${{ matrix.os }}.dylib | ||
path: target/**/*.dylib | ||
name: libtbdex_uniffi_aarch64_apple_darwin.dylib | ||
path: target/aarch64-apple-darwin/release/libtbdex_uniffi.dylib | ||
|
||
lint: | ||
runs-on: ubuntu-latest | ||
|
@@ -88,8 +92,8 @@ jobs: | |
- name: Download MacOS Native Library | ||
uses: actions/[email protected] | ||
with: | ||
name: libtbdex_uniffi_macos-latest.dylib | ||
path: bound/kt/src/main/resources/libtbdex_uniffi_aarch64_apple_darwin.dylib | ||
name: libtbdex_uniffi_aarch64_apple_darwin.dylib | ||
path: bound/kt/src/main/resources/ | ||
- name: Build and Test Kotlin Project | ||
run: | | ||
mkdir -p test-results | ||
|