Skip to content

Commit 373fe1d

Browse files
committed
Add Rust CI build
1 parent b2310aa commit 373fe1d

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

.github/workflows/build.yml

+8-1
Original file line numberDiff line numberDiff line change
@@ -110,10 +110,17 @@ jobs:
110110
mkdir -p /tmp/upload/ruby
111111
cp main.rb /tmp/upload/ruby
112112
113+
- name: "Build Rust"
114+
run: |
115+
cd $GITHUB_WORKSPACE/rust/wsgup
116+
mkdir -p /tmp/upload/rust
117+
cargo build --release
118+
cp target/release/wsgup /tmp/upload/rust
119+
113120
- name: Upload Artifact
114121
uses: actions/upload-artifact@v4
115122
with:
116-
name: wreck
123+
name: wreck-${{ github.sha }}
117124
path: /tmp/upload
118125
if-no-files-found: error
119126
retention-days: 1

0 commit comments

Comments
 (0)