-
Notifications
You must be signed in to change notification settings - Fork 72
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add Cirrus CI integration (pt2) (#39)
Adds CI files and fixes broken test (that we didn't notice before).
- Loading branch information
Showing
3 changed files
with
18 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
container: | ||
dockerfile: Dockerfile | ||
|
||
env: | ||
GOPROXY: https://proxy.golang.org | ||
GO111MODULE: on | ||
|
||
test_task: | ||
modules_cache: | ||
fingerprint_script: cat go.sum | ||
folder: $GOPATH/pkg/mod | ||
submodule_script: git submodule update --init --depth=1 | ||
build_script: go build -v ./... | ||
test_script: go test -v ./... |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
FROM golang:latest | ||
# We need OpenSSL headers to build the simulator | ||
RUN apt-get update && apt-get install -y libssl-dev |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters