mirror of
https://github.com/acepanel/panel.git
synced 2026-02-04 11:27:17 +08:00
55 lines
1.6 KiB
YAML
55 lines
1.6 KiB
YAML
name: Backend
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
pull_request:
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-24.04
|
|
strategy:
|
|
matrix:
|
|
goarch: [ amd64, arm64 ]
|
|
fail-fast: true
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v4
|
|
- name: Setup Go
|
|
uses: actions/setup-go@v5
|
|
with:
|
|
cache: true
|
|
go-version: 'stable'
|
|
- name: Install dependencies
|
|
run: go mod tidy
|
|
- name: Wait for frontend build
|
|
uses: lewagon/wait-on-check-action@v1.3.4
|
|
with:
|
|
ref: ${{ github.event.pull_request.head.sha || github.sha }}
|
|
check-name: 'build (frontend)'
|
|
repo-token: ${{ secrets.GITHUB_TOKEN }}
|
|
- name: Download frontend
|
|
uses: dawidd6/action-download-artifact@v7
|
|
with:
|
|
workflow: frontend.yml
|
|
name: frontend
|
|
path: internal/embed/frontend
|
|
check_artifacts: true
|
|
- name: Build ${{ matrix.goarch }}
|
|
env:
|
|
CGO_ENABLED: 0
|
|
GOOS: linux
|
|
GOARCH: ${{ matrix.goarch }}
|
|
run: |
|
|
go build -ldflags '-s -w --extldflags "-static"' -o web-${{ matrix.goarch }} ./cmd/web
|
|
go build -ldflags '-s -w --extldflags "-static"' -o cli-${{ matrix.goarch }} ./cmd/cli
|
|
- name: Compress ${{ matrix.goarch }}
|
|
run: |
|
|
upx --best --lzma web-${{ matrix.goarch }}
|
|
upx --best --lzma cli-${{ matrix.goarch }}
|
|
- name: Upload artifact
|
|
uses: actions/upload-artifact@v4
|
|
with:
|
|
name: ${{ matrix.goarch }}
|
|
path: |
|
|
web-${{ matrix.goarch }}
|
|
cli-${{ matrix.goarch }} |