forked from tarantool/tt
-
Notifications
You must be signed in to change notification settings - Fork 0
138 lines (116 loc) · 3.94 KB
/
tests.yml
File metadata and controls
138 lines (116 loc) · 3.94 KB
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
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
---
name: Tests
on:
push:
branches-ignore:
- 'master'
pull_request:
pull_request_target:
types: [labeled]
env:
GO_VERSION: 1.18
PYTHON_VERSION: '3.x'
jobs:
tests-ce:
if: |
(github.event_name == 'push') ||
(github.event_name == 'pull_request' &&
github.event.pull_request.head.repo.owner.login != 'tarantool' &&
!contains(github.event.pull_request.labels.*.name, 'full-ci'))
runs-on: ubuntu-20.04
strategy:
matrix:
tarantool-version: ["1.10", "2.10"]
fail-fast: false
steps:
- uses: actions/checkout@master
with:
fetch-depth: 0
submodules: recursive
- name: Prepare CE env
uses: ./.github/actions/prepare-ce-test-env
with:
tarantool-version: '${{ matrix.tarantool-version }}'
- name: Static code check
uses: ./.github/actions/static-code-check
- name: Unit tests
run: mage unit
# This server starts and listen on 8084 port that is used for tests.
- name: Stop Mono server
run: sudo systemctl kill mono-xsp4 || true
- name: Integration tests
run: mage integration
tests-ee:
# The same as for tests-ce, but it does not run on pull requests from
# forks by default. Tests will run only when the pull request is labeled
# with `ee-ci`. To avoid security problems, the label must be reset
# manually for every run.
#
# We need to use `pull_request_target` because it has access to base
# repository secrets unlike `pull_request`.
if: |
(github.event_name == 'push') ||
(github.event_name == 'pull_request_target' &&
github.event.pull_request.head.repo.owner.login != 'tarantool' &&
!contains(github.event.pull_request.labels.*.name, 'full-ci') &&
github.event.label.name == 'ee-ci')
runs-on: ubuntu-20.04
strategy:
matrix:
sdk-version: ["2.10.2-0-gf4228cb7d-r508-linux-x86_64"]
fail-fast: false
steps:
# `ref` as merge request is needed for pull_request_target because this
# target runs in the context of the base commit of the pull request.
- uses: actions/checkout@master
if: github.event_name == 'pull_request_target'
with:
fetch-depth: 0
submodules: recursive
ref: refs/pull/${{ github.event.pull_request.number }}/merge
- uses: actions/checkout@master
if: github.event_name != 'pull_request_target'
with:
fetch-depth: 0
submodules: recursive
- name: Prepare EE env
uses: ./.github/actions/prepare-ee-test-env
with:
sdk-version: '${{ matrix.sdk-version }}'
sdk-download-token: '${{ secrets.SDK_DOWNLOAD_TOKEN }}'
- name: Static code check
uses: ./.github/actions/static-code-check
- name: Unit tests
run: mage unit
# This server starts and listen on 8084 port that is used for tests.
- name: Stop Mono server
run: sudo systemctl kill mono-xsp4 || true
- name: Integration tests
run: mage integration
tests-mac-os-ce:
if: |
(github.event_name == 'push') ||
(github.event_name == 'pull_request' &&
github.event.pull_request.head.repo.owner.login != 'tarantool' &&
!contains(github.event.pull_request.labels.*.name, 'full-ci'))
runs-on: macos-12
steps:
- uses: actions/checkout@master
with:
fetch-depth: 0
submodules: recursive
- name: Install dependencies
run: |
brew install --overwrite go mage
brew install python3
pip3 install pytest tarantool requests psutil pyyaml netifaces
- name: Build tt
env:
TT_CLI_BUILD_SSL: 'static'
run: mage build
- name: Install tarantool
run: brew install tarantool
- name: Run unit tests
run: mage unit
- name: Run integration tests
run: mage integration