Skip to content

Commit

Permalink
Pin scylla-ccm version
Browse files Browse the repository at this point in the history
Use a pinned version of scylla-ccm instead of master to prevent
accidental breakage of Java Driver CI.
  • Loading branch information
avelanarius committed Jan 15, 2024
1 parent 3191a58 commit 0e84681
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/tests@v1.yml
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ jobs:
- name: Setup Python 3
uses: actions/setup-python@v2
with:
python-version: '3.x'
python-version: '3.11'

- name: Fetch Scylla and Cassandra versions
id: fetch-versions
Expand Down Expand Up @@ -134,11 +134,11 @@ jobs:
- name: Setup Python 3
uses: actions/setup-python@v2
with:
python-version: '3.x'
python-version: '3.11'

- name: Setup environment
run: |
pip3 install https://github.com/scylladb/scylla-ccm/archive/master.zip
pip3 install https://github.com/scylladb/scylla-ccm/archive/a93125bc6ad7dd5c9694331e89dc1fb212431ffe.zip
- name: Run integration tests on Cassandra (${{ matrix.cassandra-version }})
run: mvn -B -e verify -Dccm.version=${{ matrix.cassandra-version }} -Dfmt.skip=true -Dclirr.skip=true -Danimal.sniffer.skip=true

Expand Down Expand Up @@ -186,11 +186,11 @@ jobs:
- name: Setup Python 3
uses: actions/setup-python@v2
with:
python-version: '3.x'
python-version: '3.11'

- name: Setup environment
run: |
pip3 install https://github.com/scylladb/scylla-ccm/archive/master.zip
pip3 install https://github.com/scylladb/scylla-ccm/archive/a93125bc6ad7dd5c9694331e89dc1fb212431ffe.zip
sudo sh -c "echo 2097152 > /proc/sys/fs/aio-max-nr"
- name: Run integration tests on Scylla (${{ matrix.scylla-version }})
run: mvn -B verify -Dccm.version=${{ matrix.scylla-version }} -Dccm.scylla=true -Dfmt.skip=true -Dclirr.skip=true -Danimal.sniffer.skip=true
Expand All @@ -213,4 +213,4 @@ jobs:
if: ${{ failure() }}
with:
name: ccm-logs-scylla-${{ matrix.scylla-version }}
path: /tmp/ccm*/ccm*/node*/logs/*
path: /tmp/ccm*/ccm*/node*/logs/*

0 comments on commit 0e84681

Please sign in to comment.