-
Notifications
You must be signed in to change notification settings - Fork 78
47 lines (41 loc) · 1.48 KB
/
integ-test.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
name: Run Integration Tests
on: [workflow_dispatch, pull_request]
jobs:
Integration-Tests:
strategy:
matrix:
python-version:
- "3.8"
- "3.9"
- "3.10"
- "3.11"
runs-on: ubuntu-latest
steps:
- uses: actions/setup-python@v4
- uses: KengoTODA/actions-setup-docker-compose@v1
with:
version: '1.29.2'
# - name: Enforce docker-compose v1
# run: |
# echo "GitHub starts to switch runners to include docker-compose v2"
# echo "which uses 'docker compose' command to replace 'docker-compose'"
# echo "this would cause issues in our test validation so we enforce v1 here"
# echo "https://github.com/actions/runner-images/commit/2a4bc14da46f1f8e358aa902a69edb9bef135472"
# sudo apt-get remove -y docker-compose-plugin
# sudo pip install docker-compose==1.29.2
# docker --version
# docker-compose --version
- name: Check out repository code
uses: actions/checkout@v2
- name: Install pyenv
run: git clone https://github.com/pyenv/pyenv.git ~/.pyenv
- name: Install JDK 17
uses: actions/setup-java@v3
with:
distribution: 'adopt'
java-version: '17'
- run: echo "JAVA17_HOME=$JAVA_HOME" >> $GITHUB_ENV
- name: Run the CI build script
run: bash .ci/build.sh build_it ${{ matrix.python-version }}
env:
BENCHMARK_HOME: env.GITHUB_WORKSPACE