Skip to content

Fix args of wrapper script. Optimize build. Add more tests. #84

Fix args of wrapper script. Optimize build. Add more tests.

Fix args of wrapper script. Optimize build. Add more tests. #84

name: Regular 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_project_folder_and_packaged_src_are_equivalent.py
- name: Save artifacts
uses: actions/upload-artifact@v3
with:
name: testdata_output_regular_integration_tests
path: |
./testdata/output/**/*.*
if-no-files-found: error