mirror of
https://github.com/open-telemetry/opentelemetry-go.git
synced 2024-12-12 10:04:29 +02:00
808345cbf6
Related to #907
57 lines
1.2 KiB
YAML
57 lines
1.2 KiB
YAML
version: 2.1
|
|
executors:
|
|
current-go:
|
|
resource_class: large
|
|
docker:
|
|
- image: cimg/go:1.14
|
|
prior-go:
|
|
resource_class: large
|
|
docker:
|
|
- image: cimg/go:1.13
|
|
|
|
build-template: &build-template
|
|
environment:
|
|
TEST_RESULTS: /tmp/test-results # path to where test results will be saved
|
|
|
|
steps:
|
|
- checkout
|
|
- run: mkdir -p $TEST_RESULTS # create the test results directory
|
|
|
|
- restore_cache: # restores saved cache if no changes are detected since last run
|
|
keys:
|
|
- cimg-go-pkg-mod-{{ checksum "go.sum" }}
|
|
|
|
- run:
|
|
name: "Precommit and Coverage Report"
|
|
command: |
|
|
make ci
|
|
mv coverage.html $TEST_RESULTS/
|
|
|
|
- save_cache:
|
|
key: cimg-go-pkg-mod-{{ checksum "go.sum" }}
|
|
paths:
|
|
- "/home/circleci/go/pkg/mod"
|
|
|
|
- store_artifacts:
|
|
path: /tmp/test-results
|
|
destination: opentelemetry-go-test-output
|
|
|
|
- store_test_results:
|
|
path: /tmp/test-results
|
|
|
|
jobs:
|
|
current-go:
|
|
executor: current-go
|
|
<<: *build-template
|
|
|
|
prior-go:
|
|
executor: prior-go
|
|
<<: *build-template
|
|
|
|
workflows:
|
|
version: 2
|
|
build:
|
|
jobs:
|
|
- current-go
|
|
- prior-go
|