From c0abc4f9f43624a53ad4b5b2abe6357bff6ed44b Mon Sep 17 00:00:00 2001 From: Anton Baliasnikov Date: Mon, 27 May 2024 16:54:42 +0100 Subject: [PATCH] test --- .github/workflows/benchmarks.yml | 7 ++++--- .github/workflows/integration-tests.yaml | 7 ++++--- 2 files changed, 8 insertions(+), 6 deletions(-) diff --git a/.github/workflows/benchmarks.yml b/.github/workflows/benchmarks.yml index a3a02e3..e6d0e5a 100644 --- a/.github/workflows/benchmarks.yml +++ b/.github/workflows/benchmarks.yml @@ -131,15 +131,16 @@ jobs: uses: actions/download-artifact@v4 with: pattern: solc* - path: ./solc-bin/ + path: ./solc-custom-bin/ run-id: ${{ inputs.custom-solc-run-id }} merge-multiple: true - name: Prepare custom solc if: inputs.custom-solc-run-id != '' && inputs.custom-solc-version != '' run: | - chmod a+x "./solc-bin/solc-${{ inputs.custom-solc-version}}-${{ matrix.type }}" - mv "./solc-bin/solc-${{ inputs.custom-solc-version}}-${{ matrix.type }}" \ + mkdir -p ./solc-bin + chmod a+x "./solc-custom-bin/solc-${{ inputs.custom-solc-version}}-${{ matrix.type }}" + mv "./solc-custom-bin/solc-${{ inputs.custom-solc-version}}-${{ matrix.type }}" \ "./solc-bin/solc-${{ inputs.custom-solc-version}}" echo "Testing with custom solc from run ${{ inputs.custom-solc-run-id }}" echo $(./solc-bin/solc-${{ inputs.custom-solc-version}} --version) diff --git a/.github/workflows/integration-tests.yaml b/.github/workflows/integration-tests.yaml index cac3bca..0e34955 100644 --- a/.github/workflows/integration-tests.yaml +++ b/.github/workflows/integration-tests.yaml @@ -102,15 +102,16 @@ jobs: uses: actions/download-artifact@v4 with: pattern: solc* - path: ./solc-bin/ + path: ./solc-custom-bin/ run-id: ${{ inputs.custom-solc-run-id }} merge-multiple: true - name: Prepare custom solc if: inputs.custom-solc-run-id != '' && inputs.custom-solc-version != '' run: | - chmod a+x "./solc-bin/solc-${{ inputs.custom-solc-version}}-candidate" - mv "./solc-bin/solc-${{ inputs.custom-solc-version}}-candidate" \ + mkdir -p ./solc-bin + chmod a+x "./solc-custom-bin/solc-${{ inputs.custom-solc-version}}-candidate" + mv "./solc-custom-bin/solc-${{ inputs.custom-solc-version}}-candidate" \ "./solc-bin/solc-${{ inputs.custom-solc-version}}" echo "Testing with custom solc from run ${{ inputs.custom-solc-run-id }}" echo $(./solc-bin/solc-${{ inputs.custom-solc-version}} --version)