Skip to content

Commit

Permalink
Build update #228 from letheanVPN/dev
Browse files Browse the repository at this point in the history
Build update
  • Loading branch information
Snider authored Feb 2, 2022
2 parents 02b8ceb + 6d210d9 commit 8e9ee87
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/docker-testnet.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: lthn/chain:latest
name: lthn/chain:testnet
on:
push:
branches:
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,8 +61,8 @@ jobs:
run: |
${{env.CCACHE_SETTINGS}}
${{env.BUILD_DEFAULT_LINUX}}
- run: LETHEAN_RELEASE=linux make ci-release
- run: LETHEAN_RELEASE=linux make zip-release
- uses: actions/upload-artifact@v2
with:
name: linux-amd64
path: ${{ github.workspace }}/build/packaged/
name: linux.tar
path: ${{ github.workspace }}/build/linux.tar
6 changes: 3 additions & 3 deletions .github/workflows/macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,9 +55,9 @@ jobs:
run: |
${{env.CCACHE_SETTINGS}}
make release-static-mac-x86_64 -j${HOMEBREW_MAKE_JOBS}
- run: LETHEAN_RELEASE=macOS make ci-release
- run: LETHEAN_RELEASE=macOS make zip-release
- uses: actions/upload-artifact@v2
with:
name: macOS-intel
path: ${{ github.workspace }}/build/packaged/
name: macOS.tar
path: ${{ github.workspace }}/build/macOS.tar

6 changes: 3 additions & 3 deletions .github/workflows/windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,8 +51,8 @@ jobs:
${{env.CCACHE_SETTINGS}}
make release-static-win64-boost
make release-static-win64 -j2
- run: LETHEAN_RELEASE=windows make ci-release
- run: LETHEAN_RELEASE=windows make zip-release
- uses: actions/upload-artifact@v2
with:
name: windows-amd64
path: ${{ github.workspace }}/build/packaged
name: windows.tar
path: ${{ github.workspace }}/build/windows.tar
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -82,9 +82,9 @@ ci-release: # cp & chmod release/bin/lethean*) & LICENCE > build/$LETHEAN_VERSIO
mkdir -p build/packaged
cp build/$(LETHEAN_VERSION)/release/bin/* build/packaged/

zip-release: # cd into packaged, zip a clean release file for an artifact
zip-release: ci-release # cd into packaged, zip a clean release file for an artifact
cp LICENSE build/packaged/LICENSE
cd build/packaged/ && zip -r ../$(LETHEAN_RELEASE).zip . -i *
cd build/packaged/ && tar -cvf ../$(LETHEAN_RELEASE).tar .


release-static-linux-armv6: ## arch: armv6zk
Expand Down

0 comments on commit 8e9ee87

Please sign in to comment.