Use std::unique_ptr for storing temp script code in JavaVMTest::run i… #633
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: Check package diff tool | |
on: | |
push: | |
branches-ignore: | |
- master | |
jobs: | |
check_package_diff: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Setup Python & Poetry Environment | |
uses: exasol/python-toolbox/.github/actions/[email protected] | |
with: | |
python-version: "3.10" | |
poetry-version: '1.8.2' | |
- name: Setup Poetry | |
run: | | |
PYTHON_BIN=$(command -v "python3.10") | |
poetry env use "$PYTHON_BIN" | |
poetry install | |
poetry_env_path=$(poetry env info --path) | |
echo "poetry_env_path=$poetry_env_path" >> $GITHUB_ENV | |
working-directory: scripts/generate_package_diffs_for_flavors | |
- name: Run generate_package_diffs_for_flavors | |
run: | | |
source "${{ env.poetry_env_path }}/bin/activate" | |
python3 scripts/generate_package_diffs_for_flavors/generate_package_diffs_for_flavors.py --output-directory /tmp/output --current-working-copy-name test --compare-to-commit master |