Skip to content

Commit

Permalink
ci: disable custom pager test
Browse files Browse the repository at this point in the history
  • Loading branch information
LucioFranco committed Dec 5, 2024
1 parent bd59e78 commit 9a08dfa
Showing 1 changed file with 46 additions and 46 deletions.
92 changes: 46 additions & 46 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -129,52 +129,52 @@ jobs:

- name: Run tests
run: cargo nextest run
test-custom-pager:
runs-on: ubuntu-latest
name: Run Tests
env:
RUSTFLAGS: -D warnings --cfg tokio_unstable
steps:
- uses: hecrj/setup-rust-action@v2

# needed because we run out of disk space during tests
- name: Free Disk Space (Ubuntu)
uses: jlumbroso/free-disk-space@main
with:
# this might remove tools that are actually needed,
# when set to "true" but frees about 6 GB
tool-cache: true

- name: Install deps
run: sudo apt update && sudo apt install -y libclang-dev

- name: Install protoc
uses: taiki-e/install-action@v2
with:
tool: protoc@${{ env.PROTOC_VERSION }}

- uses: taiki-e/install-action@v2
with:
tool: nextest

- uses: actions/checkout@v3

- name: Set up cargo cache
uses: actions/cache@v3
continue-on-error: false
with:
path: |
~/.cargo/bin/
~/.cargo/registry/index/
~/.cargo/registry/cache/
~/.cargo/git/db/
target/
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
restore-keys: ${{ runner.os }}-cargo-
- name: Run tests with custom pager
env:
LIBSQL_EXPERIMENTAL_PAGER: 1000
run: cargo nextest run
# test-custom-pager:
# runs-on: ubuntu-latest
# name: Run Tests
# env:
# RUSTFLAGS: -D warnings --cfg tokio_unstable
# steps:
# - uses: hecrj/setup-rust-action@v2

# # needed because we run out of disk space during tests
# - name: Free Disk Space (Ubuntu)
# uses: jlumbroso/free-disk-space@main
# with:
# # this might remove tools that are actually needed,
# # when set to "true" but frees about 6 GB
# tool-cache: true

# - name: Install deps
# run: sudo apt update && sudo apt install -y libclang-dev

# - name: Install protoc
# uses: taiki-e/install-action@v2
# with:
# tool: protoc@${{ env.PROTOC_VERSION }}

# - uses: taiki-e/install-action@v2
# with:
# tool: nextest

# - uses: actions/checkout@v3

# - name: Set up cargo cache
# uses: actions/cache@v3
# continue-on-error: false
# with:
# path: |
# ~/.cargo/bin/
# ~/.cargo/registry/index/
# ~/.cargo/registry/cache/
# ~/.cargo/git/db/
# target/
# key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
# restore-keys: ${{ runner.os }}-cargo-
# - name: Run tests with custom pager
# env:
# LIBSQL_EXPERIMENTAL_PAGER: 1000
# run: cargo nextest run
test-encryption:
runs-on: ubuntu-latest
name: Run Tests
Expand Down

0 comments on commit 9a08dfa

Please sign in to comment.