Skip to content

Commit 07d3a0d

Browse files
committed
add to rel 3.45
1 parent 9fe8626 commit 07d3a0d

File tree

1 file changed

+16
-13
lines changed

1 file changed

+16
-13
lines changed

.github/workflows/testing-vars.yml

Lines changed: 16 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: testing-vars
2-
run-name: "testing-vars"
2+
run-name: Testing variables workflow. The value of skip_tests=${{ inputs.skip_tests }}
33

44
env:
55
APPLICATION: "erigon"
@@ -12,30 +12,33 @@ env:
1212
LABEL_DESCRIPTION: "[docker image built on a last commit id from the main branch] Erigon is an implementation of Ethereum (execution layer with embeddable consensus layer), on the efficiency frontier. Archive Node by default."
1313

1414
on:
15-
push:
16-
branches:
17-
- 'master'
15+
# push:
16+
# branches:
17+
# - 'main'
1818
#tags:
1919
## only trigger on release tags:
2020
#- 'v*.*.*'
2121
#- 'v*.*.*-*'
2222
workflow_dispatch:
23+
inputs:
24+
skip_tests:
25+
required: false
26+
type: boolean
27+
default: false
28+
description: 'Skip tests during release build'
2329

2430
jobs:
2531

2632
Build:
2733
runs-on: ubuntu-22.04
34+
#runs-on: [self-hosted, linux, x64, poing-animals]
2835
timeout-minutes: 30
2936

3037
steps:
38+
- name: Debug env variables - release/3.4.5 branch
39+
run: |
40+
export
3141
3242
33-
34-
- name: Debug current directory
35-
env:
36-
DOCKER_PUBLISH_LATEST_CONDITION: ${{ 'true' == 'true' && format('--tag {0}:latest',env.DOCKER_URL) || 'nothing' }}
37-
run: |
38-
set
39-
pwd
40-
ls -l
41-
ls -lao ..
43+
Run-Reusable-Wf:
44+
uses: erigontech/devops-testing-workflows/.github/workflows/reusable-test.yml@${{ GITHUB_REF_NAME }}

0 commit comments

Comments
 (0)