Skip to content

Commit

Permalink
Always use latest scylla in CI
Browse files Browse the repository at this point in the history
  • Loading branch information
sylwiaszunejko committed May 31, 2024
1 parent 7f7905d commit 0308565
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 8 deletions.
2 changes: 0 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,6 @@ jobs:
build:
name: Build
runs-on: ubuntu-latest
env:
SCYLLA_IMAGE: scylladb/scylla:5.2.9
steps:
- uses: actions/checkout@v2
- uses: actions/setup-go@v2
Expand Down
2 changes: 1 addition & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ version: "3.7"

services:
node_1:
image: ${SCYLLA_IMAGE}
image: scylladb/scylla-nightly
privileged: true
command: |
--smp 2
Expand Down
5 changes: 1 addition & 4 deletions integration.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,12 @@
# Copyright (C) 2017 ScyllaDB
#

readonly SCYLLA_IMAGE=${SCYLLA_IMAGE}

set -eu -o pipefail

function scylla_up() {
local -r exec="docker compose exec -T"

echo "==> Running Scylla ${SCYLLA_IMAGE}"
docker pull ${SCYLLA_IMAGE}
echo "==> Running Scylla"
docker compose up -d --wait
}

Expand Down
2 changes: 1 addition & 1 deletion testdata/recreate/table_golden.cql
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ CREATE TABLE gocqlx_table.monkeyspecies (
AND max_index_interval = 2048
AND memtable_flush_period_in_ms = 0
AND min_index_interval = 128
AND read_repair_chance = 1
AND read_repair_chance = 0
AND speculative_retry = '99.0PERCENTILE';

CREATE TABLE gocqlx_table.timeline (
Expand Down

0 comments on commit 0308565

Please sign in to comment.