mirror of
https://github.com/nspcc-dev/neo-go.git
synced 2024-12-04 19:19:44 +00:00
93 lines
1.8 KiB
YAML
93 lines
1.8 KiB
YAML
name: Build
|
|
|
|
on:
|
|
pull_request:
|
|
branches:
|
|
- master
|
|
types: [opened, synchronize]
|
|
paths-ignore:
|
|
- 'scripts/**'
|
|
- '**/*.md'
|
|
workflow_dispatch:
|
|
|
|
env:
|
|
GO111MODULE: "on"
|
|
|
|
jobs:
|
|
build_cli_ubuntu:
|
|
name: Build CLI (Ubuntu)
|
|
runs-on: ubuntu-20.04
|
|
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
with:
|
|
fetch-depth: 0
|
|
|
|
- name: Set up Go
|
|
uses: actions/setup-go@v2
|
|
with:
|
|
go-version: 1.17
|
|
|
|
- name: Restore Go modules from cache
|
|
uses: actions/cache@v2
|
|
with:
|
|
path: /home/runner/go/pkg/mod
|
|
key: deps-${{ hashFiles('go.sum') }}
|
|
|
|
- name: Update Go modules
|
|
run: go mod download -json
|
|
|
|
- name: Build CLI
|
|
run: make build
|
|
|
|
build_cli_wsc:
|
|
name: Build CLI (Windows Server Core)
|
|
runs-on: windows-2022
|
|
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
with:
|
|
fetch-depth: 0
|
|
|
|
- name: Set up Go
|
|
uses: actions/setup-go@v2
|
|
with:
|
|
go-version: 1.17
|
|
|
|
- name: Restore Go modules from cache
|
|
uses: actions/cache@v2
|
|
with:
|
|
path: /home/runner/go/pkg/mod
|
|
key: deps-${{ hashFiles('go.sum') }}
|
|
|
|
- name: Update Go modules
|
|
run: go mod download -json
|
|
|
|
- name: Build CLI
|
|
run: make build
|
|
|
|
build_image_ubuntu:
|
|
needs: build_cli_ubuntu
|
|
name: Build Docker image (Ubuntu)
|
|
runs-on: ubuntu-20.04
|
|
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
with:
|
|
fetch-depth: 0
|
|
|
|
- name: Build Docker image
|
|
run: make image
|
|
|
|
build_image_wsc:
|
|
needs: build_cli_wsc
|
|
name: Build Docker image (Windows Server Core)
|
|
runs-on: windows-2022
|
|
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
with:
|
|
fetch-depth: 0
|
|
|
|
- name: Build Docker image
|
|
run: make image-wsc
|