Skip to content

Commit

Permalink
chore: add github workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
vicanso committed Mar 20, 2024
1 parent aadbaaf commit 23f75ea
Show file tree
Hide file tree
Showing 4 changed files with 139 additions and 7 deletions.
111 changes: 111 additions & 0 deletions .github/workflows/publish.yml
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 }}
22 changes: 22 additions & 0 deletions .github/workflows/test.yml
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
2 changes: 1 addition & 1 deletion TODO.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,4 @@
- [x] access log
- [ ] support format for env logger(or tokio tracing)
- [ ] better error handler
- [ ] config validate
- [x] config validate
11 changes: 5 additions & 6 deletions conf/pingap.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,10 @@
error_template = ""

# The pid file of this server. Default `/tmp/pingap.pid`
# pid_file = ""
pid_file = "/tmp/pingap.pid"

# The path to the upgrade socket. Default `/tmp/pingap.sock`
# upgrade_sock = ""

upgrade_sock = "/tmp/pingap.sock"

# If configured, after daemonization, this process will switch to
# the given user before starting to serve traffic. Default `None`
Expand All @@ -16,12 +15,12 @@ error_template = ""
# group = ""

# How many threads **each** service should get.
# The threads are not shared across services. If the value is <= 0,
# The threads are not shared across services. If the value is 0,
# it will use cpus of system. Default `1`.
# threads = 2
threads = 1

# Allow work stealing between threads of the same service. Default `true`.
# work_stealing = true
work_stealing = true


# Upsteam config list, it will defined as [upstreams.name]
Expand Down

0 comments on commit 23f75ea

Please sign in to comment.