-
Notifications
You must be signed in to change notification settings - Fork 3
67 lines (58 loc) · 1.88 KB
/
main.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
name: CI
on:
push:
jobs:
test-docker-starter:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Test ./exaslct
run: ./exaslct --help
prep-testbed:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- id: set-matrix
run: |
sudo apt-get install jq
echo "::set-output name=matrix::$(bash ./scripts/test/get_all_tests.sh)"
outputs:
matrix: ${{ steps.set-matrix.outputs.matrix }}
test-all:
needs: prep-testbed
environment: ci_test
strategy:
fail-fast: false
matrix:
exasol_version:
- "default"
python_version:
- 3.10
test-path: ${{fromJson(needs.prep-testbed.outputs.matrix)}}
runs-on: ubuntu-latest
name: ${{ matrix.test-path.name }}
steps:
- uses: actions/checkout@v4
- uses: ./.github/actions/prepare_poetry_env
- name: Test exaslct_with_poetry
run: ./scripts/test/exaslct_with_poetry.sh --help
- name: Run all tests
run: ./scripts/test/run_test.sh ${{ matrix.test-path.path }}
env: # Set the secret as an input
DOCKER_USER: ${{ secrets.DOCKER_USER }}
DOCKER_PASSWD: ${{ secrets.DOCKER_PASSWD }}
publish-main:
if: github.ref == 'refs/heads/main'
runs-on: ubuntu-latest
environment: publish
steps:
- uses: actions/checkout@v4
- name: Build new Docker image
run: "bash scripts/build/build_docker_runner_image.sh"
- name: Docker login
run: echo "$SECRET_DOCKER_TOKEN" | docker login --username "$SECRET_DOCKER_USER_NAME" --password-stdin
env: # Set the secret as an input
SECRET_DOCKER_USER_NAME: ${{ secrets.DOCKER_USER_NAME }}
SECRET_DOCKER_TOKEN: ${{ secrets.DOCKER_TOKEN }}
- name: Push new Docker image
run: "bash scripts/build/push_docker_runner_image.sh main"