mirror of
https://github.com/criyle/go-judge.git
synced 2025-11-04 14:50:02 +08:00
292 lines
10 KiB
YAML
292 lines
10 KiB
YAML
name: Build
|
|
on:
|
|
push:
|
|
branches: [master]
|
|
tags: [v*]
|
|
jobs:
|
|
create-release:
|
|
name: Create release
|
|
runs-on: ubuntu-latest
|
|
outputs:
|
|
upload_url: ${{ steps.create_release.outputs.upload_url }}
|
|
steps:
|
|
- run: echo Release ${{ github.ref }}
|
|
- name: Create Release
|
|
if: ${{ contains(github.ref, 'v') }}
|
|
id: create_release
|
|
uses: actions/create-release@v1
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
with:
|
|
tag_name: ${{ github.ref }}
|
|
release_name: Release ${{ github.ref }}
|
|
draft: false
|
|
prerelease: false
|
|
build:
|
|
name: Build-${{ matrix.os }}-${{ matrix.GOARCH }}
|
|
needs: create-release
|
|
runs-on: ${{ matrix.os }}
|
|
strategy:
|
|
matrix:
|
|
os:
|
|
- windows-latest
|
|
- ubuntu-latest
|
|
- macos-latest
|
|
GOARCH:
|
|
- amd64
|
|
include:
|
|
- os: ubuntu-latest
|
|
GOARCH: "386"
|
|
- os: ubuntu-latest
|
|
GOARCH: "arm"
|
|
- os: ubuntu-latest
|
|
GOARCH: "arm64"
|
|
- os: macos-latest
|
|
GOARCH: "arm64"
|
|
steps:
|
|
- name: Set up Go 1.17
|
|
if: ${{ matrix.os != 'macos-latest' }}
|
|
uses: actions/setup-go@v2
|
|
with:
|
|
go-version: 1.17
|
|
- name: Set up Go 1.16
|
|
if: ${{ matrix.os == 'macos-latest' }}
|
|
uses: actions/setup-go@v2
|
|
with:
|
|
go-version: 1.16
|
|
- name: Check out
|
|
uses: actions/checkout@v2
|
|
- name: Get git tag ref
|
|
run: git fetch --prune --unshallow --tags
|
|
- name: Restore Cache
|
|
uses: actions/cache@v2
|
|
with:
|
|
path: ~/go/pkg/mod
|
|
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
|
|
restore-keys: |
|
|
${{ runner.os }}-go-
|
|
- name: Download dependencies
|
|
run: go mod download
|
|
|
|
- name: Build on Linux
|
|
if: ${{ matrix.os == 'ubuntu-latest' }}
|
|
env:
|
|
GOARCH: ${{ matrix.GOARCH }}
|
|
CGO_ENABLE: 0
|
|
run: |
|
|
go generate ./cmd/executorserver/version
|
|
go build -v -tags nomsgpack -o executorserver ./cmd/executorserver
|
|
go build -v -o executorshell ./cmd/executorshell
|
|
go build -o cinit ./cmd/cinit
|
|
- name: Build shared objects on Linux
|
|
if: ${{ matrix.os == 'ubuntu-latest' && matrix.GOARCH == 'amd64' }}
|
|
env:
|
|
GOARCH: ${{ matrix.GOARCH }}
|
|
run: |
|
|
go build -buildmode=c-shared -o executorserver.so ./cmd/ffi
|
|
- name: Upload executorserver on linux
|
|
if: ${{ matrix.os == 'ubuntu-latest' }}
|
|
uses: actions/upload-artifact@v2
|
|
with:
|
|
name: ExecutorServer-${{ matrix.GOARCH }}
|
|
path: executorserver
|
|
- name: Upload executorshell on linux
|
|
if: ${{ matrix.os == 'ubuntu-latest' }}
|
|
uses: actions/upload-artifact@v2
|
|
with:
|
|
name: ExecutorShell-${{ matrix.GOARCH }}
|
|
path: executorshell
|
|
- name: Upload cinit on linux
|
|
if: ${{ matrix.os == 'ubuntu-latest' }}
|
|
uses: actions/upload-artifact@v2
|
|
with:
|
|
name: cinit-${{ matrix.GOARCH }}
|
|
path: cinit
|
|
- name: Upload executorserver.so on linux
|
|
if: ${{ matrix.os == 'ubuntu-latest' && matrix.GOARCH == 'amd64' }}
|
|
uses: actions/upload-artifact@v2
|
|
with:
|
|
name: ExecutorServer-${{ matrix.GOARCH }}.so
|
|
path: executorserver.so
|
|
- name: Upload assets for linux
|
|
if: ${{ matrix.os == 'ubuntu-latest' && contains(github.ref, 'v') }}
|
|
uses: actions/upload-release-asset@v1
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
with:
|
|
upload_url: ${{ needs.create-release.outputs.upload_url }}
|
|
asset_path: executorserver
|
|
asset_name: executorserver-${{ matrix.GOARCH }}
|
|
asset_content_type: application/octet-stream
|
|
|
|
- name: Build on Windows
|
|
if: ${{ matrix.os == 'windows-latest' }}
|
|
env:
|
|
GOARCH: ${{ matrix.GOARCH }}
|
|
run: |
|
|
go generate ./cmd/executorserver/version
|
|
go build -tags nomsgpack -o executorserver.exe ./cmd/executorserver
|
|
- name: Build shared object on Windows
|
|
if: ${{ matrix.os == 'windows-latest' }}
|
|
env:
|
|
GOARCH: ${{ matrix.GOARCH }}
|
|
run: |
|
|
go build -buildmode=c-shared -o executorserver.dll ./cmd/ffi
|
|
- name: Upload executorserver.exe on Windows
|
|
if: ${{ matrix.os == 'windows-latest' }}
|
|
uses: actions/upload-artifact@v2
|
|
with:
|
|
name: ExecutorServer-${{ matrix.GOARCH }}.exe
|
|
path: executorserver.exe
|
|
- name: Upload executorserver.dll on Windows
|
|
if: ${{ matrix.os == 'windows-latest' }}
|
|
uses: actions/upload-artifact@v2
|
|
with:
|
|
name: ExecutorServer-${{ matrix.GOARCH }}.dll
|
|
path: executorserver.dll
|
|
- name: Upload assets for windows
|
|
if: ${{ matrix.os == 'windows-latest' && contains(github.ref, 'v') }}
|
|
uses: actions/upload-release-asset@v1
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
with:
|
|
upload_url: ${{ needs.create-release.outputs.upload_url }}
|
|
asset_path: executorserver.exe
|
|
asset_name: executorserver-${{ matrix.GOARCH }}.exe
|
|
asset_content_type: application/octet-stream
|
|
|
|
- name: Build on macOS
|
|
if: ${{ matrix.os == 'macos-latest' }}
|
|
env:
|
|
GOARCH: ${{ matrix.GOARCH }}
|
|
run: |
|
|
go generate ./cmd/executorserver/version
|
|
go build -tags nomsgpack -o executorserver ./cmd/executorserver
|
|
go build -o executorshell ./cmd/executorshell
|
|
- name: Build shared object on macOS
|
|
if: ${{ matrix.os == 'macos-latest' && matrix.GOARCH == 'amd64' }}
|
|
env:
|
|
GOARCH: ${{ matrix.GOARCH }}
|
|
run: |
|
|
go build -buildmode=c-shared -o executorserver.dylib ./cmd/ffi
|
|
- name: Upload executorserver on macOS
|
|
if: ${{ matrix.os == 'macos-latest' }}
|
|
uses: actions/upload-artifact@v2
|
|
with:
|
|
name: ExecutorServer-MacOS-${{ matrix.GOARCH }}
|
|
path: executorserver
|
|
- name: Upload executorshell on macOS
|
|
if: ${{ matrix.os == 'macos-latest' }}
|
|
uses: actions/upload-artifact@v2
|
|
with:
|
|
name: ExecutorShell-MacOS-${{ matrix.GOARCH }}
|
|
path: executorshell
|
|
- name: Upload executorserver.dylib on macOS
|
|
if: ${{ matrix.os == 'macos-latest' && matrix.GOARCH == 'amd64' }}
|
|
uses: actions/upload-artifact@v2
|
|
with:
|
|
name: ExecutorServer-${{ matrix.GOARCH }}.dylib
|
|
path: executorserver.dylib
|
|
- name: Upload assets for macOS
|
|
if: ${{ matrix.os == 'macos-latest' && contains(github.ref, 'v') }}
|
|
uses: actions/upload-release-asset@v1
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
with:
|
|
upload_url: ${{ needs.create-release.outputs.upload_url }}
|
|
asset_path: executorserver
|
|
asset_name: executorserver-macOS-${{ matrix.GOARCH }}
|
|
asset_content_type: application/octet-stream
|
|
docker:
|
|
name: Build Docker Image - ${{ matrix.os }}
|
|
runs-on: ubuntu-latest
|
|
strategy:
|
|
matrix:
|
|
os:
|
|
- ubuntu
|
|
- alpine
|
|
steps:
|
|
-
|
|
name: Checkout
|
|
uses: actions/checkout@v2
|
|
-
|
|
name: Docker meta
|
|
if: ${{ matrix.os == 'ubuntu' }}
|
|
id: docker_meta
|
|
uses: crazy-max/ghaction-docker-meta@v1
|
|
with:
|
|
images: criyle/executorserver # list of Docker images to use as base name for tags
|
|
tag-sha: true # add git short SHA as Docker tag
|
|
tag-semver: |
|
|
v{{version}}
|
|
tag-schedule: |
|
|
{{date 'YYYYMMDD'}}
|
|
-
|
|
name: Docker meta alpine
|
|
if: ${{ matrix.os == 'alpine' }}
|
|
id: docker_meta_alpine
|
|
uses: crazy-max/ghaction-docker-meta@v1
|
|
with:
|
|
images: criyle/executorserver # list of Docker images to use as base name for tags
|
|
tag-latest: false
|
|
tag-semver: |
|
|
v{{version}}-alpine
|
|
tag-schedule: |
|
|
{{date 'YYYYMMDD'}}-alpine
|
|
-
|
|
name: Set up QEMU
|
|
uses: docker/setup-qemu-action@v1
|
|
-
|
|
name: Set up Docker Buildx
|
|
uses: docker/setup-buildx-action@v1
|
|
-
|
|
name: Cache Docker layers
|
|
uses: actions/cache@v2
|
|
with:
|
|
path: /tmp/.buildx-cache
|
|
key: ${{ runner.os }}-buildx-${{ github.sha }}
|
|
restore-keys: |
|
|
${{ runner.os }}-buildx-
|
|
-
|
|
name: Login to DockerHub
|
|
uses: docker/login-action@v1
|
|
with:
|
|
username: ${{ secrets.DOCKERHUB_USERNAME }}
|
|
password: ${{ secrets.DOCKERHUB_TOKEN }}
|
|
-
|
|
name: Build and push
|
|
if: ${{ matrix.os == 'ubuntu' }}
|
|
id: docker_build
|
|
uses: docker/build-push-action@v2
|
|
with:
|
|
context: .
|
|
push: true
|
|
file: Dockerfile.exec
|
|
platforms: linux/amd64,linux/arm64,linux/arm/v7,linux/386
|
|
cache-from: type=local,src=/tmp/.buildx-cache
|
|
cache-to: type=local,dest=/tmp/.buildx-cache
|
|
tags: ${{ steps.docker_meta.outputs.tags }}
|
|
labels: ${{ steps.docker_meta.outputs.labels }}
|
|
-
|
|
name: Build and push alpine
|
|
if: ${{ matrix.os == 'alpine' }}
|
|
id: docker_build_alpine
|
|
uses: docker/build-push-action@v2
|
|
with:
|
|
context: .
|
|
push: true
|
|
file: Dockerfile.alpine
|
|
platforms: linux/amd64,linux/arm64,linux/arm/v7,linux/386
|
|
cache-from: type=local,src=/tmp/.buildx-cache
|
|
cache-to: type=local,dest=/tmp/.buildx-cache
|
|
tags: ${{ steps.docker_meta_alpine.outputs.tags }}
|
|
labels: ${{ steps.docker_meta_alpine.outputs.labels }}
|
|
-
|
|
name: Image digest
|
|
if: ${{ matrix.os == 'ubuntu' }}
|
|
run: echo ${{ steps.docker_build.outputs.digest }}
|
|
-
|
|
name: Image digest alpine
|
|
if: ${{ matrix.os == 'alpine' }}
|
|
run: echo ${{ steps.docker_build_alpine.outputs.digest }}
|