mirror of
https://github.com/esimov/caire.git
synced 2026-04-23 00:07:11 +08:00
70 lines
2.1 KiB
YAML
70 lines
2.1 KiB
YAML
name: build
|
|
|
|
on:
|
|
push:
|
|
branches: [master]
|
|
pull_request:
|
|
branches: [master]
|
|
|
|
env:
|
|
FORESIGHT_UPLOADER_SIGNER_URL: https://upload.service.runforesight.us
|
|
WORKFLOW_TELEMETRY_BASE_URL: https://api.service.runforesight.us
|
|
|
|
jobs:
|
|
build:
|
|
name: Build
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
go-version: [~1.18]
|
|
os: [ubuntu-latest, macos-latest]
|
|
runs-on: ${{ matrix.os }}
|
|
env:
|
|
GO111MODULE: "on"
|
|
steps:
|
|
- name: Collect Workflow Telemetry
|
|
if: always()
|
|
uses: runforesight/foresight-workflow-kit-action@v1
|
|
with:
|
|
api_key: ${{ secrets.FORESIGHT_PROJECT_WALL_APIKEY }}
|
|
- name: Install Go
|
|
uses: actions/setup-go@v2
|
|
with:
|
|
go-version: ${{ matrix.go-version }}
|
|
|
|
- name: Cache-Go
|
|
uses: actions/cache@v1
|
|
with:
|
|
path: |
|
|
~/go/pkg/mod # Module download cache
|
|
~/.cache/go-build # Build cache (Linux)
|
|
~/Library/Caches/go-build # Build cache (Mac)
|
|
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
|
|
restore-keys: |
|
|
${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
|
|
- name: Install Linux Dependencies
|
|
if: matrix.os == 'ubuntu-latest'
|
|
run: |
|
|
sudo apt-get update -y
|
|
sudo apt-get install -y gcc pkg-config libwayland-dev libx11-dev libx11-xcb-dev libxkbcommon-x11-dev libgles2-mesa-dev libegl1-mesa-dev libffi-dev libxcursor-dev libvulkan-dev
|
|
- name: Checkout code
|
|
uses: actions/checkout@v2
|
|
|
|
- name: Download Go modules
|
|
run: go mod download
|
|
|
|
- name: Build project
|
|
id: makefile
|
|
run: |
|
|
make test
|
|
- name: Analyze Test and/or Coverage Results
|
|
if: always()
|
|
uses: runforesight/foresight-test-kit-action@v1
|
|
with:
|
|
api_key: ${{ secrets.FORESIGHT_PROJECT_WALL_APIKEY }}
|
|
test_framework: golang
|
|
test_format: json
|
|
test_path: ./test-report.json
|
|
coverage_format: golang
|
|
coverage_path: |
|
|
coverage.out |