Skip to content

Commit b3dec0d

Browse files
committed
Merge branch 'master' of github.com:input-output-hk/partner-chains into upgrade_with_beefy_testing
2 parents 8e4cfae + 3ee29f2 commit b3dec0d

File tree

84 files changed

+1998
-2279
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

84 files changed

+1998
-2279
lines changed

.github/actions/tests/setup-python/action.yml

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -10,15 +10,14 @@ runs:
1010
kubeconfig_base64: ${{ env.kubeconfig_base64 }}
1111
K8S_SERVER: ${{ env.K8S_SERVER }}
1212
K8S_SA_TOKEN: ${{ env.K8S_SA_TOKEN }}
13-
- name: Setup python and dependencies
13+
- name: Set up Python 3.12
14+
uses: actions/setup-python@v5
15+
with:
16+
python-version: '3.12'
17+
cache: 'pip'
18+
- name: Setup python dependencies
1419
run: |
1520
cd e2e-tests
16-
sudo apt update
17-
sudo apt install -y software-properties-common
18-
sudo add-apt-repository ppa:deadsnakes/ppa
19-
sudo apt update
20-
sudo apt install -y python3.12 python3.12-venv python3.12-dev
21-
sudo update-alternatives --install /usr/bin/python3 python3 /usr/bin/python3.12 1
2221
curl -L --silent https://github.com/getsops/sops/releases/download/v3.7.3/sops_3.7.3_amd64.deb > sops.deb && sudo dpkg -i sops.deb && rm sops.deb
2322
python -m venv venv
2423
source venv/bin/activate

.github/workflows/e2e-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -149,4 +149,4 @@ jobs:
149149
if: ${{ !cancelled() }}
150150
run: |
151151
cd e2e-tests
152-
npx github-actions-ctrf ctrf-report.json
152+
npx github-actions-ctrf logs/ctrf-report.json

.github/workflows/release.yml

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -213,8 +213,6 @@ jobs:
213213
steps:
214214
- name: Checkout
215215
uses: actions/checkout@v4
216-
with:
217-
ref: ${{ inputs.sha }}
218216
- name: Setup tests
219217
uses: ./.github/actions/tests/setup-python
220218
env:
@@ -241,8 +239,6 @@ jobs:
241239
steps:
242240
- name: Checkout
243241
uses: actions/checkout@v4
244-
with:
245-
ref: ${{ inputs.sha }}
246242
- name: Setup tests
247243
uses: ./.github/actions/tests/setup-python
248244
env:
@@ -305,8 +301,6 @@ jobs:
305301
steps:
306302
- name: Checkout
307303
uses: actions/checkout@v4
308-
with:
309-
ref: ${{ inputs.sha }}
310304
- name: Setup tests
311305
uses: ./.github/actions/tests/setup-python
312306
env:
@@ -376,8 +370,6 @@ jobs:
376370
steps:
377371
- name: Checkout
378372
uses: actions/checkout@v4
379-
with:
380-
ref: ${{ inputs.sha }}
381373
- name: Setup tests
382374
uses: ./.github/actions/tests/setup-python
383375
env:

0 commit comments

Comments
 (0)