Skip to content

Commit

Permalink
Enable CGO
Browse files Browse the repository at this point in the history
  • Loading branch information
borkdude committed Dec 31, 2020
1 parent 9cb5525 commit 1881957
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .circleci/config.yml
Expand Up @@ -11,18 +11,22 @@ jobs:
- pod-babashka-sqlite3-{{ checksum "go.sum" }}-{{ checksum ".circleci/config.yml" }}
- run:
name: Build linux binary
environment:
CGO_ENABLED: 1
command: go build -o linux-amd64/pod-babashka-sqlite3 main.go
- run:
name: Build mac binary
environment:
GOOS: darwin
GOARCH: amd64
CGO_ENABLED: 1
command: go build -o macos-amd64/pod-babashka-sqlite3 main.go
- run:
name: Build windows binary
environment:
GOOS: windows
GOARCH: amd64
CGO_ENABLED: 1
command: go build -o windows-amd64/pod-babashka-sqlite3.exe main.go
- run:
name: Install bb for test
Expand Down

0 comments on commit 1881957

Please sign in to comment.