Skip to content

Commit

Permalink
ci(example): fix connect errors
Browse files Browse the repository at this point in the history
  • Loading branch information
Fyko committed Dec 14, 2023
1 parent b621b2a commit b7ba92c
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 14 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/audit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ on:

jobs:
audit:
runs-on: ubuntu-latest
runs-on: scyllax-runner
steps:
- name: Checkout repository
uses: actions/checkout@v4
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/book.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ concurrency:
jobs:
build:
name: Build Website
runs-on: ubuntu-latest
runs-on: scyllax-runner
steps:
- name: Checkout Repository
uses: actions/checkout@v4
Expand Down Expand Up @@ -44,7 +44,7 @@ jobs:
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
runs-on: scyllax-runner
steps:
- name: Deploy to GitHub Pages
id: deployment
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ concurrency:
jobs:
check:
name: Check Suite
runs-on: ubuntu-latest
runs-on: scyllax-runner
steps:
- name: Checkout Repository
uses: actions/checkout@v4
Expand Down Expand Up @@ -65,7 +65,7 @@ jobs:

example:
name: Run the example
runs-on: ubuntu-latest
runs-on: scyllax-runner
steps:
- name: Checkout Repository
uses: actions/checkout@v4
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/release-cli.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,19 +23,19 @@ jobs:
- os: windows-latest
target: x86_64-pc-windows-msvc
use-cross: false
- os: ubuntu-latest
- os: scyllax-runner
target: x86_64-unknown-linux-gnu
use-cross: false
- os: ubuntu-latest
- os: scyllax-runner
target: x86_64-unknown-linux-musl
use-cross: true
- os: ubuntu-latest
- os: scyllax-runner
target: i686-unknown-linux-gnu
use-cross: true
- os: ubuntu-latest
- os: scyllax-runner
target: arm-unknown-linux-gnueabihf
use-cross: true
- os: ubuntu-latest
- os: scyllax-runner
target: aarch64-unknown-linux-gnu
use-cross: true
steps:
Expand Down Expand Up @@ -94,7 +94,7 @@ jobs:

release_docker:
name: Publishing Docker Image
runs-on: ubuntu-latest
runs-on: scyllax-runner
needs: publish_cli
permissions:
packages: write
Expand Down
6 changes: 3 additions & 3 deletions test/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ services:
--smp 2
--memory 1G
healthcheck:
test: [ "CMD", "cqlsh", "-e", "select * from system.local" ]
test: [ "CMD", "cqlsh", "scylla_alpha", "-e", "select * from system.local" ]
interval: 5s
timeout: 5s
retries: 60
Expand All @@ -43,7 +43,7 @@ services:
--smp 2
--memory 1G
healthcheck:
test: [ "CMD", "cqlsh", "-e", "select * from system.local" ]
test: [ "CMD", "cqlsh", "scylla_bravo", "-e", "select * from system.local" ]
interval: 5s
timeout: 5s
retries: 60
Expand All @@ -65,7 +65,7 @@ services:
--smp 2
--memory 1G
healthcheck:
test: [ "CMD", "cqlsh", "-e", "select * from system.local" ]
test: [ "CMD", "cqlsh", "scylla_charlie", "-e", "select * from system.local" ]
interval: 5s
timeout: 5s
retries: 60
Expand Down

0 comments on commit b7ba92c

Please sign in to comment.