From a9c976f47dde9f74f0242fdf7343f4408fed090e Mon Sep 17 00:00:00 2001 From: Unlock Music Dev Date: Mon, 5 Dec 2022 07:24:21 +0800 Subject: [PATCH] Revert "fix(ci): add zlib for cgo" This reverts commit 743c672c449344f02f90dd19cf0e3859b721034f. --- .drone.jsonnet | 5 +---- .drone.yml | 1 - 2 files changed, 1 insertion(+), 5 deletions(-) diff --git a/.drone.jsonnet b/.drone.jsonnet index 1b45004..4c97a33 100644 --- a/.drone.jsonnet +++ b/.drone.jsonnet @@ -69,10 +69,7 @@ local PipelineBuild(GOOS, GOARCH, RUN_TEST) = { if RUN_TEST then [{ name: 'go test', image: 'golang:1.19', - commands: [ - 'apt-get update && apt-get -y install zlib1g-dev', - 'go test -v ./...' - ], + commands: ['go test -v ./...'], }] else [] ) + diff --git a/.drone.yml b/.drone.yml index 508115c..f0ffa1a 100644 --- a/.drone.yml +++ b/.drone.yml @@ -7,7 +7,6 @@ steps: image: alpine/git name: fetch tags - commands: - - apt-get update && apt-get -y install zlib1g-dev - go test -v ./... image: golang:1.19 name: go test