Skip to content

Commit

Permalink
Test
Browse files Browse the repository at this point in the history
  • Loading branch information
lukasz-zimnoch committed Nov 23, 2023
1 parent 05d8871 commit 30d39f9
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/dashboard-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ jobs:
# We use `dapp-development-sepolia`-taggeed packages with modified
# contracts. They contain modifications that help with the testing of
# dashboard features.
dependentPackagesTag: dapp-development-sepolia
dependentPackagesTag: dapp-development-sepoliae
gcpBucketName: preview.dashboard.test.threshold.network
gcpBucketPath: ${{ github.head_ref }}
preview: true
Expand Down
13 changes: 7 additions & 6 deletions .github/workflows/reusable-build-and-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -117,23 +117,24 @@ jobs:
threshold-contracts-version = github.com/threshold-network/solidity-contracts#version
random-beacon-contracts-version = github.com/keep-network/keep-core/random-beacon#version
# Currently we only support `environment` = `sepolia`. We provide explicit
# version of the `solidity-contracts` package, because using `sepolia` tag
# results in `expected manifest` error - probably caused by bug in Yarn:
# https://github.com/yarnpkg/yarn/issues/4731.
- name: Set packages versions
shell: bash
id: set-packages-versions
env:
TC_VERSION_MAPPING: '{"sepolia": "1.3.0-sepolia.0", "dapp-development-sepolia": "1.3.0-dapp-dev-sepolia.0"}'
run: |
if [ ${{ inputs.useUpstreamBuilds }} = 'false' ]; then
echo "threshold-contracts-version=${{ inputs.dependentPackagesTag }}" >> $GITHUB_OUTPUT
echo "threshold-contracts-version=${{ fromJson(env.TC_VERSION_MAPPING)[inputs.dependentPackagesTag] || inputs.dependentPackagesTag }}" >> $GITHUB_OUTPUT
echo "random-beacon-contracts-version=${{ inputs.dependentPackagesTag }}" >> $GITHUB_OUTPUT
else
echo "threshold-contracts-version=${{ steps.upstream-builds-query.outputs.threshold-contracts-version }}" >> $GITHUB_OUTPUT
echo "random-beacon-contracts-version=${{ steps.upstream-builds-query.outputs.random-beacon-contracts-version }}" >> $GITHUB_OUTPUT
fi
# Currently we only support `environment` = `sepolia`. We provide explicit
# version of the `solidity-contracts` package, because using `sepolia` tag
# results in `expected manifest` error - probably caused by bug in Yarn:
# https://github.com/yarnpkg/yarn/issues/4731.

# In the `package.json` there are two different versions of
# `coverage-pools` used. This is done to allow using contracts from two
# different cov pool versions on the mainnet (needed for computations of
Expand Down

0 comments on commit 30d39f9

Please sign in to comment.