Skip to content

Commit ca5d297

Browse files
committed
try to test btrfs integration using github actions
1 parent 229b398 commit ca5d297

File tree

2 files changed

+3
-7
lines changed

2 files changed

+3
-7
lines changed

.github/workflows/make-and-test.yml

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -91,12 +91,8 @@ jobs:
9191
# cache: "pnpm"
9292
# cache-dependency-path: "src/packages/pnpm-lock.yaml"
9393

94-
- name: Download and install Valkey
95-
run: |
96-
VALKEY_VERSION=8.1.2
97-
curl -LO https://download.valkey.io/releases/valkey-${VALKEY_VERSION}-jammy-x86_64.tar.gz
98-
tar -xzf valkey-${VALKEY_VERSION}-jammy-x86_64.tar.gz
99-
sudo cp valkey-${VALKEY_VERSION}-jammy-x86_64/bin/valkey-server /usr/local/bin/
94+
- name: Install btrfs-progs
95+
run: sudo apt-get update && sudo apt-get install -y btrfs-progs
10096

10197
- name: Set up Python venv and Jupyter kernel
10298
run: |

src/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
"version-check": "pip3 install typing_extensions mypy || pip3 install --break-system-packages typing_extensions mypy && ./workspaces.py version-check && mypy scripts/check_npm_packages.py",
1919
"test-parallel": "unset DEBUG && pnpm run version-check && cd packages && pnpm run -r --parallel test",
2020
"test": "unset DEBUG && pnpm run depcheck && pnpm run version-check && ./workspaces.py test",
21-
"test-github-ci": "unset DEBUG && pnpm run depcheck && pnpm run version-check && ./workspaces.py test --exclude=jupyter,file-server --retries=1",
21+
"test-github-ci": "unset DEBUG && pnpm run depcheck && pnpm run version-check && ./workspaces.py test --exclude=jupyter --retries=1",
2222
"depcheck": "cd packages && pnpm run -r --parallel depcheck",
2323
"prettier-all": "cd packages/",
2424
"local-ci": "./scripts/ci.sh",

0 commit comments

Comments
 (0)