-
Notifications
You must be signed in to change notification settings - Fork 16
79 lines (63 loc) · 2.81 KB
/
RavenClient.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
name: compile
on:
push:
branches: [ master,dev ]
pull_request:
branches: [ master,dev ]
workflow_dispatch:
schedule:
- cron: '0 10 * * 6'
jobs:
build:
name: Run
runs-on: ${{ matrix.operating-system }}
strategy:
matrix:
go version: [ 1.15,1.16,1.17.x ]
serverVersion: [ "5.2", "5.3" ]
operating-system: [ ubuntu-latest ]
fail-fast: false
env:
RAVEN_License: ${{ secrets.RAVEN_LICENSE }}
RAVENDB_TEST_SERVER_PATH: ./RavenDB/Server/Raven.Server
RAVENDB_TEST_CERTIFICATE_PATH: ./certs/server.pfx
RAVENDB_TEST_CLIENT_CERTIFICATE_PATH: ./certs/go.pem
RAVENDB_TEST_CA_PATH: /usr/local/share/ca-certificates/ca.crt
RAVENDB_BUILD_TYPE: nightly
VERBOSE_LOG: true
LOG_FAILED_HTTP_REQUESTS: true
LOG_ALL_REQUESTS: true
LOG_FAILED_HTTP_REQUESTS_DELAYED: true
steps:
- name: Setup GO
uses: actions/setup-go@v2
with:
go-version: ${{ matrix.go-version }}
- name: Check out code into the go module directory
uses: actions/checkout@v2
- name: Download RavenDB Server
run: wget -O RavenDB.tar.bz2 "https://hibernatingrhinos.com/downloads/RavenDB%20for%20Linux%20x64/latest?buildType=${{ env.RAVENDB_BUILD_TYPE }}&version=${{ matrix.serverVersion }}"
- run: mkdir certs
- run: openssl genrsa -out certs/ca.key 4096
- run: openssl req -new -x509 -key certs/ca.key -out certs/ca.crt -subj "/C=US/ST=Arizona/L=Nevada/O=RavenDB Test CA/OU=RavenDB test CA/CN=localhost/[email protected]"
- run: openssl genrsa -out certs/localhost.key 4096
- run: openssl req -new -key certs/localhost.key -out certs/localhost.csr -subj "/C=US/ST=Arizona/L=Nevada/O=RavenDB Test/OU=RavenDB test/CN=localhost/[email protected]"
- run: openssl x509 -req -extensions ext -extfile tests/cert/test_cert.conf -in certs/localhost.csr -CA certs/ca.crt -CAkey certs/ca.key -CAcreateserial -out certs/localhost.crt
- run: cat certs/localhost.key certs/localhost.crt > certs/go.pem
- run: openssl pkcs12 -passout pass:"" -export -out certs/server.pfx -inkey certs/localhost.key -in certs/localhost.crt
- run: sudo cp certs/ca.crt /usr/local/share/ca-certificates/ca.crt
- run: sudo update-ca-certificates
- name: Extract RavenDB Server
run: tar xjf RavenDB.tar.bz2
- name: Deploy server certificate
run: mkdir RavenDB/Server/certs && cp certs/server.pfx RavenDB/Server/certs/
- name: Install dependencies
run: |
go version
go get -u golang.org/x/lint/golint
- name: Build package
run: go build
- name: Compile tests
run: go test -tags for_tests -c ./tests
- name: Run tests
run: go test -tags for_tests -v ./tests