Skip to content

Commit 1db8d0f

Browse files
check if darwin artifacts are downloaded correctly
1 parent 98a98f5 commit 1db8d0f

File tree

2 files changed

+16
-0
lines changed

2 files changed

+16
-0
lines changed

.github/workflows/check-ts.yml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,5 +32,20 @@ jobs:
3232
gh-token: ${{ secrets.GITHUB_TOKEN }}
3333
artifact-generation: ${{ vars.ARTIFACT_GENERATION }}
3434

35+
# We're just using the make action to download the previously produced artifact,
36+
# so the make rule doesn't matter, just the key.
37+
- name: download ts native aarch64 apple darwin artifacts
38+
uses: ./.github/actions/make
39+
with:
40+
key: ts-native-darwin-arm64
41+
make-rule: ts-native
42+
target-path: crypto-ffi/bindings/js/out/native/darwin-arm64.node
43+
44+
gh-token: ${{ secrets.GITHUB_TOKEN }}
45+
artifact-generation: ${{ vars.ARTIFACT_GENERATION }}
46+
47+
- name: list files
48+
run: ls crypto-ffi/bindings/js/out/native
49+
3550
- name: lint
3651
run: make ts-check

.github/workflows/pipeline.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -219,6 +219,7 @@ jobs:
219219
needs:
220220
- bindings-ts-browser
221221
- bindings-ts-native-linux
222+
- bindings-ts-native-darwin
222223
uses: ./.github/workflows/check-ts.yml
223224

224225
docs-ts:

0 commit comments

Comments
 (0)