add test for 'full' docker image build
This commit is contained in:
parent
4add3a063f
commit
9b41578d83
|
@ -165,6 +165,16 @@ jobs:
|
||||||
XC_OS: "freebsd linux"
|
XC_OS: "freebsd linux"
|
||||||
XC_ARCH: "arm"
|
XC_ARCH: "arm"
|
||||||
|
|
||||||
|
test-docker-full:
|
||||||
|
executor:
|
||||||
|
name: go
|
||||||
|
steps:
|
||||||
|
- checkout
|
||||||
|
- setup_remote_docker
|
||||||
|
- run:
|
||||||
|
name: test docker build for 'full' image
|
||||||
|
command: docker build -t test-docker-full .
|
||||||
|
|
||||||
workflows:
|
workflows:
|
||||||
version: 2
|
version: 2
|
||||||
test:
|
test:
|
||||||
|
@ -180,6 +190,13 @@ workflows:
|
||||||
requires:
|
requires:
|
||||||
- go-test
|
- go-test
|
||||||
- go-test-e2e
|
- go-test-e2e
|
||||||
|
- test-docker-full:
|
||||||
|
filters:
|
||||||
|
branches:
|
||||||
|
only:
|
||||||
|
- master
|
||||||
|
- /^v\d+\.\d+$/ # v0.11, v0.12, etc.
|
||||||
|
|
||||||
build-distros:
|
build-distros:
|
||||||
jobs:
|
jobs:
|
||||||
- build-386
|
- build-386
|
||||||
|
|
Loading…
Reference in New Issue