Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
antonbaliasnikov committed May 27, 2024
1 parent fb8a160 commit a2b79fe
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 7 deletions.
6 changes: 2 additions & 4 deletions .github/workflows/benchmarks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -138,10 +138,8 @@ jobs:
- name: Prepare custom solc
if: inputs.custom-solc-run-id != '' && inputs.custom-solc-version != ''
run: |
find .
SOLC_DIR="./solc-custom-bin/solc-${{ inputs.custom-solc-version}}-${{ matrix.type }}"
chmod a+x "${SOLC_DIR}/solc-${{ inputs.custom-solc-version}}-${{ matrix.type }}"
mv "${SOLC_DIR}/solc-${{ inputs.custom-solc-version}}-${{ matrix.type }}" \
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)
Expand Down
5 changes: 2 additions & 3 deletions .github/workflows/integration-tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -110,9 +110,8 @@ jobs:
if: inputs.custom-solc-run-id != '' && inputs.custom-solc-version != ''
run: |
find .
SOLC_DIR="./solc-custom-bin/solc-${{ inputs.custom-solc-version}}-candidate"
chmod a+x "${SOLC_DIR}/solc-${{ inputs.custom-solc-version}}-candidate"
mv "${SOLC_DIR}/solc-${{ inputs.custom-solc-version}}-candidate" \
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)
Expand Down

0 comments on commit a2b79fe

Please sign in to comment.