mirror of
https://github.com/criyle/go-judge.git
synced 2025-11-04 14:50:02 +08:00
159 lines
5.5 KiB
YAML
159 lines
5.5 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:
|
|
- name: Create Release
|
|
if: ${{ startsWith(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 }}
|
|
needs: create-release
|
|
runs-on: ${{ matrix.os }}
|
|
strategy:
|
|
matrix:
|
|
os:
|
|
- windows-latest
|
|
- ubuntu-latest
|
|
- macos-latest
|
|
GOARCH:
|
|
- amd64
|
|
steps:
|
|
- name: Set up Go 1.14
|
|
uses: actions/setup-go@v2
|
|
with:
|
|
go-version: 1.14
|
|
- 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 }}
|
|
run: |
|
|
go generate ./cmd/executorserver
|
|
go build -o executorserver ./cmd/executorserver
|
|
- name: Build shared objects on Linux
|
|
if: ${{ matrix.os == 'ubuntu-latest' }}
|
|
env:
|
|
GOARCH: ${{ matrix.GOARCH }}
|
|
run: |
|
|
go build -o cinit ./cmd/cinit
|
|
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 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' }}
|
|
uses: actions/upload-artifact@v2
|
|
with:
|
|
name: ExecutorServer-${{ matrix.GOARCH }}.so
|
|
path: executorserver.so
|
|
- name: Upload assets for linux
|
|
if: ${{ matrix.os == 'ubuntu-latest' && startsWith(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
|
|
go build -o executorserver.exe ./cmd/executorserver
|
|
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' && startsWith(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
|
|
go build -o executorserver ./cmd/executorserver
|
|
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 executorserver.dylib on macOS
|
|
if: ${{ matrix.os == 'macos-latest' }}
|
|
uses: actions/upload-artifact@v2
|
|
with:
|
|
name: ExecutorServer-${{ matrix.GOARCH }}.dylib
|
|
path: executorserver.dylib
|
|
- name: Upload assets for macOS
|
|
if: ${{ matrix.os == 'macos-latest' && startsWith(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
|