-
Notifications
You must be signed in to change notification settings - Fork 28
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
139 additions
and
7 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,111 @@ | ||
name: "publish" | ||
on: | ||
push: | ||
tags: ["v[0-9]+.[0-9]+.[0-9]+*"] | ||
# branches: [ main ] | ||
|
||
env: | ||
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }} | ||
CARGO_TERM_COLOR: always | ||
|
||
jobs: | ||
linux: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- name: setup node | ||
uses: actions/setup-node@v3 | ||
- name: build-web | ||
run: make build-web | ||
- name: release | ||
uses: addnab/docker-run-action@v3 | ||
with: | ||
image: messense/rust-musl-cross:x86_64-musl | ||
options: -v ${{ github.workspace }}:/home/rust/src | ||
run: | | ||
make release | ||
mv target/x86_64-unknown-linux-musl/release/pingap ./pingap-linux-x86 | ||
- name: Upload Assets | ||
run: | | ||
./.github/workflows/upload_asset.sh ./pingap-linux-x86 $GITHUB_TOKEN | ||
linux-aarch64: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- name: setup node | ||
uses: actions/setup-node@v3 | ||
- name: build-web | ||
run: make build-web | ||
- name: release | ||
uses: addnab/docker-run-action@v3 | ||
with: | ||
image: messense/rust-musl-cross:aarch64-musl | ||
options: -v ${{ github.workspace }}:/home/rust/src | ||
run: | | ||
make release | ||
mv target/aarch64-unknown-linux-musl/release/pingap ./pingap-linux-aarch64 | ||
- name: Upload Assets | ||
run: | | ||
./.github/workflows/upload_asset.sh ./pingap-linux-aarch64 $GITHUB_TOKEN | ||
docker: | ||
runs-on: ubuntu-latest | ||
timeout-minutes: 3600 | ||
steps: | ||
- name: Change Swap Space | ||
run: | | ||
swapon --show=NAME | tail -n 1 | ||
df -lh | ||
du -sh /usr/share/dotnet | ||
sudo rm -rf /usr/share/dotnet | ||
du -sh /usr/local/lib/android | ||
sudo rm -rf /usr/local/lib/android | ||
export SWAP_FILE=$(swapon --show=NAME | tail -n 1) | ||
sudo swapoff $SWAP_FILE | ||
sudo rm $SWAP_FILE | ||
export SWAP_FILE=/swapfile | ||
sudo fallocate -l 16G $SWAP_FILE | ||
sudo chmod 600 $SWAP_FILE | ||
sudo mkswap $SWAP_FILE | ||
sudo swapon $SWAP_FILE | ||
- name: Swap space report after modification | ||
shell: bash | ||
run: | | ||
echo "Memory and swap:" | ||
free -h | ||
echo | ||
swapon --show | ||
df -lh | ||
echo | ||
- name: Checkout | ||
uses: actions/checkout@v3 | ||
- name: Docker meta | ||
id: meta | ||
uses: docker/metadata-action@v4 | ||
with: | ||
images: | | ||
vicanso/pingap | ||
tags: | | ||
type=semver,pattern={{version}} | ||
- name: Set up QEMU | ||
uses: docker/setup-qemu-action@v2 | ||
- name: Set up Docker Buildx | ||
id: buildx | ||
uses: docker/setup-buildx-action@v2 | ||
- name: Available platforms | ||
run: echo ${{ steps.buildx.outputs.platforms }} | ||
- name: Login to Docker Hub | ||
uses: docker/login-action@v2 | ||
with: | ||
username: ${{ secrets.DOCKER_HUB_USERNAME }} | ||
password: ${{ secrets.DOCKER_HUB_ACCESS_TOKEN }} | ||
- name: Build and push | ||
id: docker_build | ||
uses: docker/build-push-action@v4 | ||
with: | ||
platforms: linux/amd64, linux/arm64 | ||
push: true | ||
tags: ${{ steps.meta.outputs.tags }} | ||
- name: Image digest | ||
run: | | ||
echo ${{ steps.docker_build.outputs.digest }} |
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,22 @@ | ||
name: "publish" | ||
on: | ||
push: | ||
# tags: ["v[0-9]+.[0-9]+.[0-9]+*"] | ||
branches: [main] | ||
|
||
env: | ||
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }} | ||
CARGO_TERM_COLOR: always | ||
|
||
jobs: | ||
linux: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: release | ||
uses: addnab/docker-run-action@v3 | ||
with: | ||
image: messense/rust-musl-cross:x86_64-musl | ||
options: -v ${{ github.workspace }}:/home/rust/src | ||
run: | | ||
make release |
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
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