2024-05-01 16:39:52 +08:00
|
|
|
name: Build and Release
|
2024-05-01 16:32:57 +08:00
|
|
|
|
|
|
|
on:
|
2024-05-01 21:50:20 +08:00
|
|
|
# push:
|
|
|
|
# branches: [ main ]
|
|
|
|
# pull_request:
|
|
|
|
# branches: [ main ]
|
|
|
|
# release:
|
|
|
|
# types: [published]
|
|
|
|
workflow_dispatch:
|
2024-05-01 16:32:57 +08:00
|
|
|
|
|
|
|
jobs:
|
2024-05-01 16:39:52 +08:00
|
|
|
build:
|
|
|
|
name: Build and Test
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- name: Checkout code
|
|
|
|
uses: actions/checkout@v3
|
|
|
|
|
|
|
|
- name: Set up Go
|
|
|
|
uses: actions/setup-go@v3
|
|
|
|
with:
|
|
|
|
go-version: 'stable'
|
|
|
|
|
|
|
|
- name: Build and Test on Default Platform
|
|
|
|
run: |
|
|
|
|
go build -v ./...
|
|
|
|
go test -v ./...
|
2024-05-01 17:28:17 +08:00
|
|
|
|
2024-05-01 17:28:07 +08:00
|
|
|
- name: Delete Existing Release Assets
|
|
|
|
run: |
|
|
|
|
release_id=$(curl -s -H "Authorization: Bearer ${{ secrets.GITHUB_TOKEN }}" "https://api.github.com/repos/oneclickvirt/backtrace/releases/tags/output" | jq -r '.id')
|
|
|
|
echo "Deleting existing release assets..."
|
|
|
|
assets=$(curl -s -H "Accept: application/vnd.github.v3+json" "https://api.github.com/repos/oneclickvirt/backtrace/releases/$release_id/assets" | jq -r '.[] | .id')
|
|
|
|
for asset in $assets; do
|
|
|
|
echo "Deleting asset with ID: $asset"
|
|
|
|
curl -X DELETE -H "Authorization: Bearer ${{ secrets.GITHUB_TOKEN }}" "https://api.github.com/repos/oneclickvirt/backtrace/releases/assets/$asset"
|
|
|
|
done
|
2024-05-01 22:01:55 +08:00
|
|
|
sleep 60
|
2024-05-01 16:39:52 +08:00
|
|
|
|
2024-05-01 17:19:32 +08:00
|
|
|
release-binary:
|
|
|
|
name: Release Go Binary
|
2024-05-01 16:32:57 +08:00
|
|
|
runs-on: ubuntu-latest
|
2024-05-01 16:39:52 +08:00
|
|
|
needs: build
|
2024-05-01 16:51:07 +08:00
|
|
|
steps:
|
|
|
|
- name: Checkout code
|
|
|
|
uses: actions/checkout@v3
|
|
|
|
|
|
|
|
- name: Set up Go
|
|
|
|
uses: actions/setup-go@v3
|
|
|
|
with:
|
|
|
|
go-version: 'stable'
|
|
|
|
|
2024-05-01 17:19:32 +08:00
|
|
|
- name: Build and Release
|
2024-05-02 08:37:25 +08:00
|
|
|
run: |
|
|
|
|
mkdir -p bin
|
|
|
|
cd cmd
|
2024-05-02 08:45:28 +08:00
|
|
|
CGO_ENABLED=0 GOOS=${{ matrix.goos }} GOARCH=${{ matrix.goarch }} go build -o ../bin/backtrace-${{ matrix.goos }}-${{ matrix.goarch }} -v -ldflags="-extldflags=-static" .
|
2024-05-01 16:51:07 +08:00
|
|
|
|
2024-05-01 17:25:34 +08:00
|
|
|
- name: Upload New Assets
|
2024-05-01 17:19:32 +08:00
|
|
|
run: |
|
|
|
|
release_id=$(curl -s -H "Authorization: Bearer ${{ secrets.GITHUB_TOKEN }}" "https://api.github.com/repos/oneclickvirt/backtrace/releases/tags/output" | jq -r '.id')
|
2024-05-01 17:25:34 +08:00
|
|
|
echo "Uploading new assets to release..."
|
2024-05-01 17:19:32 +08:00
|
|
|
for file in ./bin/*; do
|
|
|
|
echo "Uploading $file to release..."
|
|
|
|
curl -s -H "Authorization: Bearer ${{ secrets.GITHUB_TOKEN }}" \
|
2024-05-01 17:39:29 +08:00
|
|
|
-H "Content-Type: application/octet-stream" \
|
2024-05-01 17:19:32 +08:00
|
|
|
--data-binary @"$file" \
|
|
|
|
"https://uploads.github.com/repos/oneclickvirt/backtrace/releases/$release_id/assets?name=$(basename "$file")"
|
|
|
|
rm -rf $file
|
|
|
|
done
|
|
|
|
|
2024-05-01 16:32:57 +08:00
|
|
|
strategy:
|
|
|
|
matrix:
|
2024-05-01 16:39:52 +08:00
|
|
|
goos: [windows, freebsd, openbsd, linux, darwin]
|
2024-05-01 16:32:57 +08:00
|
|
|
goarch: [amd64, 386]
|
|
|
|
exclude:
|
|
|
|
- goarch: 386
|
|
|
|
goos: darwin
|
|
|
|
include:
|
2024-05-02 08:45:28 +08:00
|
|
|
- goos: windows
|
|
|
|
goarch: 386
|
|
|
|
- goos: windows
|
|
|
|
goarch: amd64
|
2024-05-01 22:21:56 +08:00
|
|
|
- goos: windows
|
|
|
|
goarch: arm64
|
|
|
|
- goos: windows
|
|
|
|
goarch: arm
|
|
|
|
goarm: 7
|
2024-05-01 16:32:57 +08:00
|
|
|
- goos: darwin
|
|
|
|
goarch: arm64
|
|
|
|
- goos: linux
|
|
|
|
goarch: arm
|
|
|
|
goarm: 7
|
|
|
|
- goos: linux
|
|
|
|
goarch: arm64
|
|
|
|
- goos: linux
|
|
|
|
goarch: riscv64
|
2024-05-01 17:26:14 +08:00
|
|
|
- goos: linux
|
|
|
|
goarch: mips64
|
|
|
|
- goos: linux
|
|
|
|
goarch: mips64le
|
|
|
|
- goos: linux
|
|
|
|
goarch: mipsle
|
|
|
|
- goos: linux
|
|
|
|
goarch: mips
|
2024-05-01 16:32:57 +08:00
|
|
|
- goos: linux
|
|
|
|
goarch: ppc64
|
|
|
|
- goos: linux
|
|
|
|
goarch: ppc64le
|
|
|
|
- goos: freebsd
|
|
|
|
goarch: arm64
|
|
|
|
- goos: freebsd
|
|
|
|
goarch: arm
|
|
|
|
goarm: 7
|
|
|
|
- goos: openbsd
|
|
|
|
goarch: arm64
|
|
|
|
- goos: openbsd
|
|
|
|
goarch: arm
|
2024-05-01 21:50:20 +08:00
|
|
|
goarm: 7
|
2024-05-02 08:45:28 +08:00
|
|
|
# - goos: linux
|
|
|
|
# goarch: mipsle
|
|
|
|
# gomips: softfloat
|
|
|
|
# - goos: linux
|
|
|
|
# goarch: mips
|
|
|
|
# gomips: softfloat
|
|
|
|
# - goos: linux
|
|
|
|
# goarch: arm
|
|
|
|
# goarm: 6
|
|
|
|
# - goos: linux
|
|
|
|
# goarch: arm
|
|
|
|
# goarm: 5
|