Skip to content

Commit

Permalink
feat: make artifact for dev-ci
Browse files Browse the repository at this point in the history
  • Loading branch information
jed-wemade authored Jun 3, 2024
1 parent d439b02 commit 9f8f870
Showing 1 changed file with 15 additions and 3 deletions.
18 changes: 15 additions & 3 deletions .github/workflows/dev-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,21 @@ jobs:
go-version: 1.19

- name: Build Go-WEMIX
run: make gwemix.tar.gz
- name: Check Build
run: ls -al build/gwemix.tar.gz
run: USE_ROCKSDB=YES make gwemix.tar.gz

- name: Stat Go-WEMIX
run: |
ls -l build/gwemix.tar.gz
tar tf build/gwemix.tar.gz
- name: Move results to artifact
run: mv build/gwemix.tar.gz gwemix-${{ github.event.pull_request.head.sha }}-linux-amd64-rocksdb.tar.gz

- name: Upload Go-WEMIX
uses: actions/upload-artifact@v4
with:
name: artifact-${{ github.event.pull_request.head.sha }}
path: gwemix-${{ github.event.pull_request.head.sha }}-linux-amd64-rocksdb.tar.gz
retention-days: 7

lint_test:
strategy:
Expand Down

0 comments on commit 9f8f870

Please sign in to comment.