forked from apigee/registry
-
Notifications
You must be signed in to change notification settings - Fork 0
121 lines (106 loc) · 4.03 KB
/
go.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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
# Copyright 2021 Google LLC
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
name: Go
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
name: Build
runs-on: ubuntu-22.04
services:
postgres:
image: postgres:15
env:
# Define a super user. Password for super user is required.
POSTGRES_USER: postgres
POSTGRES_PASSWORD: postgres
# Allow other connections without a password.
POSTGRES_HOST_AUTH_METHOD: trust
# Set health checks to wait until postgres has started.
options: >-
--health-cmd pg_isready
--health-interval 10s
--health-timeout 5s
--health-retries 5
ports:
# Map tcp service container port 5432 to the host.
- 5432:5432
steps:
- name: Set up Go 1.x
uses: actions/setup-go@v2
with:
go-version: ^1.18
- name: Check out code into the Go module directory
uses: actions/checkout@v2
- name: golangci-lint
uses: golangci/golangci-lint-action@v2
with:
version: v1.45
args: --timeout 5m0s
- name: Install
run: go install ./...
- name: Install protoc (needed for registry upload tests)
uses: arduino/setup-protoc@v1
- name: Create default configuration that uses a local server
run: registry config configurations create local --registry.address='127.0.0.1:8080' --registry.insecure
- name: Test everything with SQLite
run: go test ./...
- name: Configure PostgreSQL
env:
# Connect to the locally mapped port.
PGHOST: localhost
PGPORT: 5432
# Use the super user for configuration.
PGUSER: postgres
PGPASSWORD: postgres
# Create the database and user required by the PostgreSQL tests.
run: psql -c "CREATE USER registry_tester" -c "CREATE DATABASE registry_test WITH OWNER registry_tester"
- name: Test registry server with PostgreSQL
run: go test ./server/registry -postgresql
- name: Compute code coverage
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
run: |
go clean -testcache
go test -race -coverprofile=coverage.txt -covermode=atomic ./...
curl https://keybase.io/codecovsecurity/pgp_keys.asc | gpg --no-default-keyring --keyring trustedkeys.gpg --import # One-time step
curl -Os https://uploader.codecov.io/latest/linux/codecov
curl -Os https://uploader.codecov.io/latest/linux/codecov.SHA256SUM
curl -Os https://uploader.codecov.io/latest/linux/codecov.SHA256SUM.sig
gpgv codecov.SHA256SUM.sig codecov.SHA256SUM
shasum -a 256 -c codecov.SHA256SUM
chmod +x codecov
./codecov -t ${CODECOV_TOKEN}
- name: Start a standalone registry server for subsequent testing
run: registry-server &
- name: Test a standalone registry server using the remote proxy
run: go test ./server/registry -remote
- name: Test a standalone registry server using the remote proxy in hosted mode
env:
PROJECTID: hosted-ci-test
run: |
registry rpc admin create-project --project_id=$PROJECTID --json
go test ./server/registry -hosted $PROJECTID
- name: Verify that benchmarks run on a standalone registry server
env:
PROJECTID: bench
ITERATIONS: 1
run: |
registry rpc admin create-project --project_id=$PROJECTID --json
go test ./tests/benchmark --bench=. --project_id=$PROJECTID --benchtime=${ITERATIONS}x --timeout=0