removed install_start_scripts
command / API
#624
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: | |
push: | |
jobs: | |
test-docker-starter: | |
strategy: | |
fail-fast: false | |
matrix: | |
python_version: ["3.10", "3.11", "3.12"] | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup Python & Poetry Environment | |
uses: exasol/python-toolbox/.github/actions/python-environment@0.12.0 | |
with: | |
python-version: '${{ matrix.python_version }}' | |
poetry-version: '1.8.2' | |
- name: Test exaslct | |
run: poetry 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 | |
- name: Setup Python & Poetry Environment | |
uses: exasol/python-toolbox/.github/actions/python-environment@0.12.0 | |
with: | |
python-version: '${{ matrix.python_version }}' | |
poetry-version: '1.8.2' | |
- name: Test exaslct | |
run: poetry run exaslct --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" |