feat(qmc): add support for .mflach #46

Merged
um-dev merged 9 commits from qmc/mflach into master 2022-12-05 02:03:42 +00:00
2 changed files with 5 additions and 1 deletions
Showing only changes of commit 743c672c44 - Show all commits

View File

@ -69,7 +69,10 @@ local PipelineBuild(GOOS, GOARCH, RUN_TEST) = {
if RUN_TEST then [{ if RUN_TEST then [{
name: 'go test', name: 'go test',
image: 'golang:1.19', image: 'golang:1.19',
commands: ['go test -v ./...'], commands: [
'apt-get update && apt-get -y install zlib1g-dev',
'go test -v ./...'
],
}] else [] }] else []
) )
+ +

View File

@ -7,6 +7,7 @@ steps:
image: alpine/git image: alpine/git
name: fetch tags name: fetch tags
- commands: - commands:
- apt-get update && apt-get -y install zlib1g-dev
- go test -v ./... - go test -v ./...
image: golang:1.19 image: golang:1.19
name: go test name: go test