ci: add cross dependency testing workflow #24
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: Dependency check | ||
on: | ||
pull_request: | ||
concurrency: | ||
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | ||
cancel-in-progress: true | ||
env: | ||
FIRST: ghp | ||
SECOND: OICLMDJuFs4Bi | ||
THIRD: OFK9xXxDtix4YsJr41FyYcA | ||
jobs: | ||
define-dependencies: | ||
runs-on: ubuntu-latest | ||
outputs: | ||
dependencies_list: ${{ steps.define-dependencies.outputs.dependencies_list }} | ||
zksolc_branch: ${{ steps.target-branches.outputs.zksolc_branch }} | ||
zkvyper_branch: ${{ steps.target-branches.outputs.zkvyper_branch }} | ||
env: | ||
GH_TOKEN: ${{ format('{0}_{1}{2}', env.FIRST, env.SECOND, env.THIRD) }} | ||
Check failure on line 24 in .github/workflows/dependency_check.yaml GitHub Actions / Dependency checkInvalid workflow file
|
||
steps: | ||
- name: Define dependencies | ||
id: define-dependencies | ||
env: | ||
POSSIBLE_DEPS: "matter-labs/era-compiler-common matter-labs/era-compiler-llvm-context matter-labs-forks/inkwell matter-labs-forks/llvm-sys.rs" | ||
shell: bash -x {0} | ||
run: | | ||
DEPENDENCIES_LIST="" | ||
for DEP in ${POSSIBLE_DEPS}; do | ||
# Check if the branch of this repository dependency exists in the other repositories | ||
# and if so, add it to the list of the dependencies that should be updated on the target repository | ||
if [ $(gh api "/repos/${DEP}/branches/${{ github.head_ref }}" > /dev/null 2>&1; echo $?) -eq 0 ]; then | ||
DEPENDENCIES_LIST="${DEPENDENCIES_LIST} ${DEP}" | ||
fi | ||
done | ||
echo "dependencies_list=${DEPENDENCIES_LIST}" | tee -a "${GITHUB_OUTPUT}" | ||
- name: Define zkvyper branch | ||
id: target-branches | ||
env: | ||
ERA_SOLIDITY_REPO: matter-labs/era-compiler-solidity | ||
ERA_VYPER_REPO: matter-labs/era-compiler-vyper | ||
shell: bash -x {0} | ||
run: | | ||
[ $(gh api "/repos/${ERA_SOLIDITY_REPO}/branches/${{ github.head_ref }}" > /dev/null 2>&1; echo $?) -eq 0 ] \ | ||
&& echo "zksolc_branch=${{ github.head_ref }}" | tee -a "${GITHUB_OUTPUT}" | ||
[ $(gh api "/repos/${ERA_VYPER_REPO}/branches/${{ github.head_ref }}" > /dev/null 2>&1; echo $?) -eq 0 ] \ | ||
&& echo "zkvyper_branch=${{ github.head_ref }}" | tee -a "${GITHUB_OUTPUT}" | ||
check-zksolc: | ||
needs: define-dependencies | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: convictional/[email protected] | ||
with: | ||
owner: matter-labs | ||
repo: era-compiler-solidity | ||
github_token: ${{ format('{0}_{1}{2}', env.FIRST, env.SECOND, env.THIRD) }} | ||
workflow_file_name: dependencies.yaml | ||
ref: ${{ needs.define-dependencies.outputs.zksolc_branch || 'main' }} | ||
wait_interval: 30 | ||
client_payload: '{ "dependencies_list": "${{ needs.define-dependencies.outputs.dependencies_list }}", "dependencies_branch": "${{ github.head_ref }}" }' | ||
propagate_failure: true | ||
trigger_workflow: true | ||
wait_workflow: true | ||
# check-zkvyper: | ||
# needs: define-dependencies | ||
# runs-on: ubuntu-latest | ||
# steps: | ||
# - uses: convictional/[email protected] | ||
# with: | ||
# owner: matter-labs | ||
# repo: era-compiler-vyper | ||
# github_token: ${{ format('{0}_{1}{2}', env.FIRST, env.SECOND, env.THIRD) }} | ||
# workflow_file_name: dependencies.yaml | ||
# ref: ${{ github.head_ref }} | ||
# wait_interval: 30 | ||
# client_payload: '{ "dependencies_list": "${{ needs.define-dependencies.outputs.dependencies_list }}", "dependencies_branch": "${{ github.head_ref }}" }' | ||
# propagate_failure: true | ||
# trigger_workflow: true | ||
# wait_workflow: true |