docs: update readme #215
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
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: | |
strategy: | |
matrix: | |
# TODO: add nightly | |
toolchain: [stable] | |
runs-on: ubuntu-latest | |
services: | |
etcd: | |
image: quay.io/coreos/etcd:v3.5.5 | |
env: | |
ETCD_ADVERTISE_CLIENT_URLS: http://0.0.0.0:2379 | |
ETCD_LISTEN_CLIENT_URLS: http://0.0.0.0:2379 | |
ports: | |
- 2379:2379 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: setup node | |
uses: actions/setup-node@v4 | |
- name: build-web | |
run: make build-web | |
- name: Install build dependencies | |
run: | | |
sudo apt update | |
sudo apt install -y cmake libclang-dev wget gnupg ca-certificates lsb-release --no-install-recommends protobuf-compiler | |
- name: Install toolchain | |
uses: dtolnay/rust-toolchain@master | |
with: | |
toolchain: ${{ matrix.toolchain }} | |
components: rustfmt, clippy | |
- name: Run cargo fmt | |
run: cargo fmt --all -- --check | |
- name: Run cargo clippy | |
run: make lint | |
- name: Run cargo test | |
run: make test | |
- name: Run cargo release | |
run: | | |
make release | |
ldd target/release/pingap | |
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@v4 | |
- name: Docker meta | |
id: meta | |
uses: docker/metadata-action@v4 | |
with: | |
images: | | |
vicanso/pingap | |
tags: | | |
type=raw,value=latest | |
- name: Set up QEMU | |
uses: docker/setup-qemu-action@v3 | |
- name: Set up Docker Buildx | |
id: buildx | |
uses: docker/setup-buildx-action@v3 | |
- name: Available platforms | |
run: echo ${{ steps.buildx.outputs.platforms }} | |
- name: Login to Docker Hub | |
uses: docker/login-action@v3 | |
with: | |
username: ${{ secrets.DOCKER_HUB_USERNAME }} | |
password: ${{ secrets.DOCKER_HUB_ACCESS_TOKEN }} | |
- name: Build and push | |
id: docker_build | |
uses: docker/build-push-action@v5 | |
with: | |
platforms: linux/amd64, linux/arm64 | |
push: true | |
tags: ${{ steps.meta.outputs.tags }} | |
- name: Image digest | |
run: | | |
echo ${{ steps.docker_build.outputs.digest }} |