Skip to content

Commit 17df05e

Browse files
Add temporary testing config
Changing config for workflow testing purposes. Changes need to be reverted before merge to main.
1 parent e90ca01 commit 17df05e

File tree

2 files changed

+38
-13
lines changed

2 files changed

+38
-13
lines changed

.github/workflows/contracts.yaml

+26-13
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ jobs:
5858

5959
contracts-deployment-testnet:
6060
needs: [contracts-build-and-test]
61-
if: github.event_name == 'workflow_dispatch'
61+
if: github.event_name == 'workflow_dispatch' || github.event_name == 'pull_request' # TODO: remove PR condition
6262
runs-on: ubuntu-latest
6363
steps:
6464
- uses: actions/checkout@v2
@@ -72,20 +72,25 @@ jobs:
7272
- name: Install dependencies
7373
run: yarn install --frozen-lockfile
7474

75-
- name: Get upstream packages versions
76-
uses: keep-network/ci/actions/upstream-builds-query@v1
77-
id: upstream-builds-query
78-
with:
79-
upstream-builds: ${{ github.event.inputs.upstream_builds }}
80-
query: keep-core-contracts-version = github.com/keep-network/keep-core/solidity-v1#version
75+
# - name: Get upstream packages versions
76+
# uses: keep-network/ci/actions/upstream-builds-query@v1
77+
# id: upstream-builds-query
78+
# with:
79+
# upstream-builds: ${{ github.event.inputs.upstream_builds }}
80+
# query: keep-core-contracts-version = github.com/keep-network/keep-core/solidity-v1#version
81+
82+
# - name: Resolve latest contracts
83+
# run: |
84+
# yarn upgrade \
85+
# @keep-network/keep-core@${{ steps.upstream-builds-query.outputs.keep-core-contracts-version }}
8186

8287
- name: Resolve latest contracts
8388
run: |
8489
yarn upgrade \
85-
@keep-network/keep-core@${{ steps.upstream-builds-query.outputs.keep-core-contracts-version }}
90+
@keep-network/keep-core@1.8.0-ropsten.13+main.6a98f2b066bc27910ab1715e7d20b7ba3c3ff21e
8691
8792
- name: Configure tenderly
88-
if: github.event.inputs.environment == 'ropsten'
93+
# if: github.event.inputs.environment == 'ropsten' TODO: uncomment
8994
env:
9095
TENDERLY_TOKEN: ${{ secrets.TENDERLY_TOKEN }}
9196
run: ./config_tenderly.sh
@@ -94,20 +99,23 @@ jobs:
9499
env:
95100
CHAIN_API_URL: ${{ secrets.KEEP_TEST_ETH_HOSTNAME_HTTP }}
96101
CONTRACT_OWNER_ACCOUNT_PRIVATE_KEY: ${{ secrets.KEEP_TEST_ETH_CONTRACT_OWNER_PRIVATE_KEY }}
97-
run: yarn deploy --network ${{ github.event.inputs.environment }}
102+
# run: yarn deploy --network ${{ github.event.inputs.environment }} TODO: uncomment, remove below file
103+
run: yarn deploy --network ropsten
98104

99105
- name: Bump up package version
100106
id: npm-version-bump
101107
uses: keep-network/npm-version-bump@v2
102108
with:
103-
environment: ${{ github.event.inputs.environment }}
109+
# environment: ${{ github.event.inputs.environment }}
110+
environment: ropsten
104111
branch: ${{ github.ref }}
105112
commit: ${{ github.sha }}
106113

107114
- name: Publish to npm # TODO: switch off --dry-run
108115
env:
109116
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
110-
run: npm publish --access=public --network=${{ github.event.inputs.environment }} --dry-run
117+
# run: npm publish --access=public --network=${{ github.event.inputs.environment }} --dry-run TODO: uncomment, remove below
118+
run: npm publish --access=public --network=ropsten --dry-run
111119

112120
- name: Upload files needed for etherscan verification
113121
uses: actions/upload-artifact@v2
@@ -147,12 +155,16 @@ jobs:
147155
env:
148156
ETHERSCAN_API_KEY: ${{ secrets.ETHERSCAN_API_KEY }}
149157
CHAIN_API_URL: ${{ secrets.KEEP_TEST_ETH_HOSTNAME_HTTP }}
158+
# run: |
159+
# yarn run hardhat --network ${{ github.event.inputs.environment }} \
160+
# etherscan-verify --license MIT
150161
run: |
151-
yarn run hardhat --network ${{ github.event.inputs.environment }} \
162+
yarn run hardhat --network ropsten \
152163
etherscan-verify --license MIT
153164
154165
contracts-slither:
155166
runs-on: ubuntu-latest
167+
continue-on-error: true # TODO: remove
156168
steps:
157169
- uses: actions/checkout@v2
158170

@@ -183,3 +195,4 @@ jobs:
183195

184196
- name: Run Slither
185197
run: slither .
198+
# run: slither --hardhat-artifacts-directory build .

config_tenderly.sh

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
#!/bin/bash
2+
3+
set -e
4+
5+
LOG_START='\n\e[1;36m' # new line + bold + color
6+
LOG_END='\n\e[0m' # new line + reset color
7+
8+
printf "${LOG_START}Configuring Tenderly...${LOG_END}"
9+
10+
mkdir $HOME/.tenderly && touch $HOME/.tenderly/config.yaml
11+
12+
echo access_key: ${TENDERLY_TOKEN} > $HOME/.tenderly/config.yaml

0 commit comments

Comments
 (0)