No more x compile

This commit is contained in:
T.v.Dein
2022-09-30 22:28:18 +02:00
committed by GitHub
parent 1b1b63caa3
commit 487470818c

View File

@@ -13,50 +13,26 @@ jobs:
parameters:
go_version:
type: string
os:
type: string
run_test:
type: boolean
default: true
docker:
- image: cimg/go:<< parameters.go_version >>
environment:
GOOS: "<< parameters.os >>"
steps:
- checkout
- run: make test
workflows:
version: 2
procfs:
unit-test:
jobs:
- compile
- test:
name: test-linux
os: linux
matrix:
parameters:
go_version:
- "1.16"
- "1.17"
- "1.18"
- test:
name: test-freebsd
os: freebsd
run_test: false
matrix:
parameters:
go_version:
- "1.16"
- "1.17"
- "1.18"
- test:
name: test-windows
os: windows
run_test: false
name: testing
matrix:
parameters:
go_version:
- "1.16"
- "1.17"
- "1.18"
- "1.19"