mirror of
https://github.com/nspcc-dev/neo-go.git
synced 2024-11-22 09:29:38 +00:00
github: add job to check Ubuntu privnet image build
Related to https://github.com/nspcc-dev/neo-go/pull/2408#pullrequestreview-921289314.
This commit is contained in:
parent
52893d6a00
commit
be14d8325b
1 changed files with 24 additions and 0 deletions
24
.github/workflows/build.yml
vendored
24
.github/workflows/build.yml
vendored
|
@ -127,3 +127,27 @@ jobs:
|
||||||
|
|
||||||
- name: Build Docker image
|
- name: Build Docker image
|
||||||
run: make image-wsc
|
run: make image-wsc
|
||||||
|
|
||||||
|
build_privnet_image_ubuntu:
|
||||||
|
needs: build_cli_ubuntu
|
||||||
|
name: Build privnet Docker image (Ubuntu)
|
||||||
|
runs-on: ubuntu-20.04
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v2
|
||||||
|
with:
|
||||||
|
ref: ${{ github.event.inputs.ref }}
|
||||||
|
fetch-depth: 0
|
||||||
|
|
||||||
|
# For proper `deps` make target execution.
|
||||||
|
- name: Set up Go
|
||||||
|
uses: actions/setup-go@v2
|
||||||
|
with:
|
||||||
|
go-version: 1.18
|
||||||
|
|
||||||
|
# For information purposes.
|
||||||
|
- name: Print Docker version
|
||||||
|
run: docker --version
|
||||||
|
|
||||||
|
- name: Build privnet Docker image
|
||||||
|
run: make env_image
|
||||||
|
|
Loading…
Reference in a new issue