Skip to content

Commit ec9441f

Browse files
committed
chore: install svn cli for release-test action
1 parent 0f16a1a commit ec9441f

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed

.github/workflows/release-test.yml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,10 @@ on:
1313

1414
# https://help.github.com/en/actions/automating-your-workflow-with-github-actions/software-installed-on-github-hosted-runners
1515

16+
env:
17+
# Disable Docker download progress
18+
BUILDKIT_PROGRESS: plain
19+
1620
jobs:
1721
release-avatica:
1822
strategy:
@@ -31,6 +35,11 @@ jobs:
3135
with:
3236
java-version: 21
3337
distribution: 'zulu'
38+
- name: Install SVN
39+
# language=bash
40+
run: |
41+
sudo apt-get update
42+
sudo apt-get install -y subversion
3443
- name: 'Start release environment'
3544
# language=bash
3645
run: |
@@ -79,6 +88,11 @@ jobs:
7988
with:
8089
java-version: 21
8190
distribution: 'zulu'
91+
- name: Install SVN
92+
# language=bash
93+
run: |
94+
sudo apt-get update
95+
sudo apt-get install -y subversion
8296
- name: 'Start release environment'
8397
# language=bash
8498
run: |
@@ -127,6 +141,11 @@ jobs:
127141
with:
128142
java-version: 21
129143
distribution: 'zulu'
144+
- name: Install SVN
145+
# language=bash
146+
run: |
147+
sudo apt-get update
148+
sudo apt-get install -y subversion
130149
- name: 'Start release environment'
131150
# language=bash
132151
run: |

0 commit comments

Comments
 (0)