Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
antonbaliasnikov committed Jun 27, 2024
1 parent 25b74c4 commit e45a14b
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 13 deletions.
4 changes: 3 additions & 1 deletion .github/actions/install-solc/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,7 @@ runs:
[ ${SOLC_VERSION} = ${{ inputs.solc-version-latest }} ] && cp "${OUTPUT}" "${{ inputs.output-dir }}/${{ inputs.solc-default-name }}${WIN_SUFFIX}"
done
echo "${PWD}/${{ inputs.output-dir }}" >> "${GITHUB_PATH}"
ls -la ${PWD}/${{ inputs.output-dir }}
- name: Install upstream solc on Windows
if: runner.os == 'Windows'
Expand All @@ -68,5 +69,6 @@ runs:
curl --location -o "${SOLC_DOWNLOAD}.zip" "${SOLC_URL}/${SOLC_DOWNLOAD}.zip"
unzip -d ${SOLC_DOWNLOAD} "${SOLC_DOWNLOAD}.zip"
SOLC_SHORT_VERSION=$(echo "${SOLC_VERSION}" | cut -d+ -f1 | tr -d v)
mv "${SOLC_DOWNLOAD}/solc.exe" "${{ inputs.output-dir }}/${{ inputs.solc-default-name }}-${SOLC_SHORT_VERSION}"
mv "${SOLC_DOWNLOAD}/solc.exe" "${{ inputs.output-dir }}/${{ inputs.solc-default-name }}-${SOLC_SHORT_VERSION}.exe"
done
ls -la ${PWD}/${{ inputs.output-dir }}
24 changes: 12 additions & 12 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -35,18 +35,18 @@ jobs:
fail-fast: false # finalize testing of all targets even if one failed
matrix:
include:
- name: "MacOS x86"
runner: macos-12-large
- name: "MacOS arm64"
runner: [self-hosted, macOS, ARM64]
- name: "Linux x86"
runner: matterlabs-ci-runner
image: matterlabs/llvm_runner:ubuntu22-llvm17-latest
target: "x86_64-unknown-linux-musl"
- name: "Linux ARM64"
runner: matterlabs-ci-runner-arm
image: matterlabs/llvm_runner:ubuntu22-llvm17-latest
target: "aarch64-unknown-linux-musl"
# - name: "MacOS x86"
# runner: macos-12-large
# - name: "MacOS arm64"
# runner: [self-hosted, macOS, ARM64]
# - name: "Linux x86"
# runner: matterlabs-ci-runner
# image: matterlabs/llvm_runner:ubuntu22-llvm17-latest
# target: "x86_64-unknown-linux-musl"
# - name: "Linux ARM64"
# runner: matterlabs-ci-runner-arm
# image: matterlabs/llvm_runner:ubuntu22-llvm17-latest
# target: "aarch64-unknown-linux-musl"
- name: "Windows"
runner: windows-2022-github-hosted-16core
runs-on: ${{ matrix.runner }}
Expand Down

0 comments on commit e45a14b

Please sign in to comment.