Skip to content

Commit 6f7c73f

Browse files
committed
github actions: install jvm 11
seems like the github builder ubuntu-latest doesn't have jvm-11 that we need by default anymore, and we need to install java on our own this change install it using `actions/setup-java`
1 parent d9747d3 commit 6f7c73f

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

.github/workflows/integration-tests.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,10 @@ jobs:
2424

2525
steps:
2626
- uses: actions/checkout@v3
27+
- uses: actions/setup-java@v4
28+
with:
29+
distribution: 'temurin'
30+
java-version: '11'
2731
- name: setup pyenv ${{ matrix.python-version }}
2832
uses: "gabrielfalcao/pyenv-action@v16"
2933
with:
@@ -32,7 +36,7 @@ jobs:
3236
- name: Test with pytest
3337
run: |
3438
export EVENT_LOOP_MANAGER=${{ matrix.event_loop_manager }}
35-
export SCYLLA_VERSION='release:5.1'
39+
export SCYLLA_VERSION='release:5.4'
3640
./scripts/run_integration_test.sh tests/integration/standard/ tests/integration/cqlengine/
3741
3842
- name: Test tablets

0 commit comments

Comments
 (0)