-
Notifications
You must be signed in to change notification settings - Fork 108
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[bfops/test-windows-package]: add CI for windows build test
- Loading branch information
Showing
1 changed file
with
20 additions
and
0 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 |
---|---|---|
@@ -0,0 +1,20 @@ | ||
name: Package SpacetimeDB CLI | ||
|
||
on: | ||
push: | ||
|
||
jobs: | ||
test-cli-build: | ||
name: Test CLI build for Windows | ||
Check warning Code scanning / CodeQL Workflow does not contain permissions Medium test
Actions Job or Workflow does not set permissions
|
||
runs-on: windows-latest | ||
|
||
steps: | ||
- name: Show arch | ||
run: uname -a | ||
wget https://spacetimedb-client-binaries.nyc3.digitaloceanspaces.com/noa/fix-master-ci/spacetime-x86_64-pc-windows-msvc.zip | ||
7z x spacetime-x86_64-pc-windows-msvc.zip | ||
./spacetimedb-cli help | ||
./spacetimedb-update version help | ||
./spacetimedb-standalone help & | ||
sleep 10 | ||
kill $! |