Fix names in AWSParams in integration_tests #206
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: Build Language Container | |
on: [ push ] | |
jobs: | |
integration_tests: | |
strategy: | |
fail-fast: false | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Setup Python & Poetry Environment | |
uses: ./.github/actions/prepare_poetry_env | |
- name: Build language container | |
run: ./build_language_container.sh | |
- name: Archive language container | |
uses: actions/upload-artifact@v2 | |
with: | |
name: exasol_sagemaker_extension_container | |
path: .build_output/cache/exports/*.tar.gz* | |
- name: Archive language container build logs | |
uses: actions/upload-artifact@v2 | |
with: | |
name: container build logs | |
path: .build_output/jobs/* |