Skip to content

Commit 373af96

Browse files
committed
Add verification steps
1 parent 5a5c2a3 commit 373af96

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

.github/workflows/general.yml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,24 +44,32 @@ jobs:
4444
with:
4545
command: build
4646
args: --target x86_64-unknown-linux-gnu
47+
- name: Verify - CPU, x86_64-unknown-linux-gnu
48+
run: ls -lh target/x86_64-unknown-linux-gnu/debug/build/onnxruntime-sys-*/out/onnxruntime-linux-x64-1.*.tgz
4749
# ******************************************************************
4850
- name: Download - CPU, x86_64-apple-darwin
4951
uses: actions-rs/cargo@v1
5052
with:
5153
command: build
5254
args: --target x86_64-apple-darwin
55+
- name: Verify - CPU, x86_64-apple-darwin
56+
run: ls -lh target/x86_64-apple-darwin/debug/build/onnxruntime-sys-*/out/onnxruntime-osx-x64-1.*.tgz
5357
# # ******************************************************************
5458
# - name: Download - CPU, i686-pc-windows-msvc
5559
# uses: actions-rs/cargo@v1
5660
# with:
5761
# command: build
5862
# args: --target i686-pc-windows-msvc
63+
# - name: Verify - CPU, i686-pc-windows-msvc
64+
# run: ls -lh target/i686-pc-windows-msvc/debug/build/onnxruntime-sys-*/out/onnxruntime-win-x86-1.*.zip
5965
# ******************************************************************
6066
- name: Download - CPU, x86_64-pc-windows-msvc
6167
uses: actions-rs/cargo@v1
6268
with:
6369
command: build
6470
args: --target x86_64-pc-windows-msvc
71+
- name: Verify - CPU, x86_64-pc-windows-msvc
72+
run: ls -lh target/x86_64-pc-windows-msvc/debug/build/onnxruntime-sys-*/out/onnxruntime-win-x64-1.*.zip
6573
# ******************************************************************
6674
- name: Download - GPU, x86_64-unknown-linux-gnu
6775
uses: actions-rs/cargo@v1
@@ -70,6 +78,8 @@ jobs:
7078
with:
7179
command: build
7280
args: --target x86_64-unknown-linux-gnu
81+
- name: Verify - CPU, x86_64-unknown-linux-gnu
82+
run: ls -lh target/x86_64-unknown-linux-gnu/debug/build/onnxruntime-sys-*/out/onnxruntime-win-linux-gpu-1.*.zip
7383
# ******************************************************************
7484
- name: Download - GPU, x86_64-pc-windows-msvc
7585
uses: actions-rs/cargo@v1
@@ -78,6 +88,8 @@ jobs:
7888
with:
7989
command: build
8090
args: --target x86_64-pc-windows-msvc
91+
- name: Verify - CPU, x86_64-pc-windows-msvc
92+
run: ls -lh target/x86_64-pc-windows-msvc/debug/build/onnxruntime-sys-*/out/onnxruntime-win-x64-gpu-1.*.zip
8193

8294
test:
8395
name: Test Suite

0 commit comments

Comments
 (0)