forked from jhump/protoreflect
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.yml
69 lines (62 loc) · 1.53 KB
/
config.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
shared_configs:
simple_job_steps: &simple_job_steps
- checkout
- run:
name: Run tests
command: |
make deps test
# Use the latest 2.1 version of CircleCI pipeline process engine. See: https://circleci.com/docs/2.0/configuration-reference
version: 2.1
jobs:
build-1-13:
working_directory: ~/repo
docker:
- image: circleci/golang:1.13
steps: *simple_job_steps
build-1-14:
working_directory: ~/repo
docker:
- image: circleci/golang:1.14
steps: *simple_job_steps
build-1-15:
working_directory: ~/repo
docker:
- image: circleci/golang:1.15
steps: *simple_job_steps
build-1-16:
working_directory: ~/repo
docker:
- image: circleci/golang:1.16
steps:
- checkout
- restore_cache:
keys:
- go-mod-v4-{{ checksum "go.sum" }}
- run:
name: Install Dependencies
command: go mod download
- save_cache:
key: go-mod-v4-{{ checksum "go.sum" }}
paths:
- "/go/pkg/mod"
- run:
name: Run tests
command: |
#mkdir -p /tmp/test-reports
#gotestsum --junitfile /tmp/test-reports/unit-tests.xml
make ci
#- store_test_results:
# path: /tmp/test-reports
build-1-17:
working_directory: ~/repo
docker:
- image: circleci/golang:1.17
steps: *simple_job_steps
workflows:
pr-build-test:
jobs:
- build-1-13
- build-1-14
- build-1-15
- build-1-16
- build-1-17