File tree Expand file tree Collapse file tree 1 file changed +10
-2
lines changed
chainlink-testing-framework/run-tests Expand file tree Collapse file tree 1 file changed +10
-2
lines changed Original file line number Diff line number Diff line change @@ -328,12 +328,18 @@ runs:
328
328
shell : bash
329
329
run : go run ${{ github.action_path }}/mask-testsecrets/main.go "${{ inputs.test_secrets_override_base64 }}"
330
330
331
+ - name : Checkout chainlink-testing-framework to use citool
332
+ uses : actions/checkout@9bb56186c3b09b4f86b1c65136769dd318469633 # v4.1.2
333
+ with :
334
+ repository : smartcontractkit/chainlink-testing-framework
335
+ ref : main
336
+ fetch-depth : 0
337
+ path : ctf
338
+
331
339
- name : Create default test config override
332
340
if : inputs.test_config_override_base64 == ''
333
341
shell : bash
334
342
run : |
335
- cd integration-tests/citool/
336
-
337
343
create_args=()
338
344
if [ -n "${{ inputs.test_config_chainlink_version }}" ]; then
339
345
create_args+=(--chainlink-version="${{ inputs.test_config_chainlink_version }}")
@@ -369,6 +375,8 @@ runs:
369
375
create_args+=(--selected-networks="$i")
370
376
done
371
377
378
+ cd ctf/tools/citool/
379
+
372
380
config_override=$(go run main.go test-config create "${create_args[@]}")
373
381
374
382
BASE64_CONFIG_OVERRIDE=$(echo "$config_override" | base64 -w 0)
You can’t perform that action at this time.
0 commit comments