Fix v4, part 2: undo breaking changes of (v4) -> (v5), handle workspaces #81
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: Long integration tests | |
on: | |
workflow_dispatch: | |
pull_request: | |
jobs: | |
build: | |
name: Build | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out the repo | |
uses: actions/checkout@v2 | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v2 | |
- name: Build image | |
run: | | |
docker buildx build --output type=docker --no-cache . -t sdk-rust-contract-builder:next -f ./Dockerfile | |
- name: Build | |
run: | | |
export PYTHONPATH=. | |
python ./integration_tests/test_previous_builds_are_reproducible.py --selected-builds "a.1" "a.2" "a.3" | |
- name: Save artifacts | |
uses: actions/upload-artifact@v3 | |
with: | |
name: testdata_output_long_integration_tests | |
path: | | |
./testdata/output/**/*.* | |
if-no-files-found: error |