Skip to content

Commit 0650419

Browse files
committed
.github/workflows/plebnet-playground.yml: init act config
1 parent eb9702f commit 0650419

File tree

1 file changed

+26
-3
lines changed

1 file changed

+26
-3
lines changed

.github/workflows/plebnet-playground.yml

Lines changed: 26 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,10 +31,11 @@ jobs:
3131
name: github-workspace
3232
strategy:
3333
matrix:
34-
os: [ubuntu-20.04, ubuntu-latest]
34+
os: [ubuntu-latest]
3535
runs-on: ${{ matrix.os }}
3636
steps:
3737
- uses: styfle/[email protected]
38+
if: ${{ !env.ACT }}
3839
with:
3940
access_token: ${{ github.token }}
4041
- name: Print github workspace
@@ -44,10 +45,11 @@ jobs:
4445
ubuntu-build_and_test:
4546
strategy:
4647
matrix:
47-
os: [ubuntu-20.04, ubuntu-latest]
48+
os: [ubuntu-latest]
4849
runs-on: ${{ matrix.os }}
4950
steps:
5051
- uses: styfle/[email protected]
52+
if: ${{ !env.ACT }}
5153
with:
5254
access_token: ${{ github.token }}
5355
- uses: actions/checkout@v3
@@ -60,71 +62,92 @@ jobs:
6062
- run: pip install -r requirements.txt
6163
if: steps.cache-virtualenv.outputs.cache-hit != 'true'
6264

65+
- name: sudo apt install gawk
66+
run: |
67+
sudo apt install gawk
6368
- name: make help report
69+
#if: ${{ !env.ACT }}
6470
run: |
65-
make help report
71+
make help report submodules
6672
- name: make initialize init
73+
#if: ${{ !env.ACT }}
6774
run: |
6875
make initialize init docker-pull
6976
- name: make venv && . .venv/bin/activate
77+
#if: ${{ !env.ACT }}
7078
run: |
7179
make venv && . .venv/bin/activate
7280
make test-venv
7381
- name: make build para=true
82+
if: ${{ !env.ACT }}
7483
run: |
7584
make build para=true
7685
- name: make install
86+
if: ${{ !env.ACT }}
7787
run: |
7888
make install
7989
- name: ./install.sh
90+
if: ${{ !env.ACT }}
8091
run: |
8192
./install.sh
8293
- name: make docs && git diff
94+
if: ${{ !env.ACT }}
8395
run: |
8496
make docs && git diff
8597
8698
- name: play
99+
if: ${{ !env.ACT }}
87100
run: |
88101
play
89102
90103
- name: play info
104+
if: ${{ !env.ACT }}
91105
run: |
92106
play info
93107
94108
- name: play ids
109+
if: ${{ !env.ACT }}
95110
run: |
96111
play ids
97112
98113
- name: play-bitcoin "bitcoin-cli -h"
114+
if: ${{ !env.ACT }}
99115
run: |
100116
play-bitcoin "bitcoin-cli -h"
101117
102118
- name: play bitcoin config
119+
if: ${{ !env.ACT }}
103120
run: |
104121
play bitcoin config
105122
106123
- name: play-bitcoin config
124+
if: ${{ !env.ACT }}
107125
run: |
108126
play-bitcoin config
109127
110128
- name: play lnd config
129+
if: ${{ !env.ACT }}
111130
run: |
112131
# play defaults to the lnd container
113132
play lnd config
114133
115134
- name: play lnd "lncli -h"
135+
if: ${{ !env.ACT }}
116136
run: |
117137
play lnd "lncli -h"
118138
119139
- name: play-lnd config
140+
if: ${{ !env.ACT }}
120141
run: |
121142
play-lnd config
122143
123144
- name: play-lnd "lncli -h"
145+
if: ${{ !env.ACT }}
124146
run: |
125147
play-lnd "lncli -h"
126148
127149
- name: uninstall
150+
if: ${{ !env.ACT }}
128151
run: |
129152
make prune-playground || echo
130153
make prune-cluster || echo

0 commit comments

Comments
 (0)