Skip to content

Commit 1e75636

Browse files
ci: update CI to conform with the new swift ffi lib target path
1 parent 8776930 commit 1e75636

2 files changed

Lines changed: 22 additions & 2 deletions

File tree

.github/actions/make/bindings-swift/action.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@ runs:
1515
gh-token: ${{ inputs.gh-token }}
1616
artifact-generation: ${{ inputs.artifact-generation }}
1717

18-
- name: fetch ffi library
19-
uses: ./.github/actions/make/ffi-library
18+
- name: fetch Swift FFI library
19+
uses: ./.github/actions/make/swift-ffi-library
2020
with:
2121
gh-token: ${{ inputs.gh-token }}
2222
artifact-generation: ${{ inputs.artifact-generation }}
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
name: Fetch or make Swift FFI library
2+
3+
inputs:
4+
gh-token:
5+
required: true
6+
artifact-generation:
7+
description: suffix for artifact names that allows us to easily invalidate artifacts
8+
9+
runs:
10+
using: composite
11+
12+
steps:
13+
- uses: ./.github/actions/make
14+
with:
15+
key: swift-ffi-library
16+
make-rule: swift-ffi-library
17+
target-path: target/swift-bindgen/release/libcore_crypto_ffi.dylib
18+
gh-token: ${{ inputs.gh-token }}
19+
uses-rust: true
20+
artifact-generation: ${{ inputs.artifact-generation }}

0 commit comments

Comments
 (0)