forked from nxtmeta/go-nxtmeta
-
Notifications
You must be signed in to change notification settings - Fork 25
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Make artifact for deploying gwemix (#98)
- Loading branch information
Showing
1 changed file
with
36 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,36 @@ | ||
name: artifacts | ||
|
||
on: | ||
push: | ||
branches: | ||
- devnet | ||
- master | ||
|
||
jobs: | ||
|
||
build: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
|
||
- name: Set up Go | ||
uses: actions/setup-go@v4 | ||
with: | ||
go-version: '1.19' | ||
|
||
- name: Build Go-WEMIX tarball | ||
run: USE_ROCKSDB=YES make gwemix.tar.gz | ||
|
||
- name: Stat Go-WEMIX tarball | ||
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.ref_name }}-${{ github.sha }}-linux-amd64-rocksdb.tar.gz | ||
|
||
- name: Upload Go-WEMIX | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
name: artifact-${{ github.ref_name }}-${{ github.sha }} | ||
path: gwemix-${{ github.ref_name }}-${{ github.sha }}-linux-amd64-rocksdb.tar.gz |