Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
Signed-off-by: Cole Miller <[email protected]>
  • Loading branch information
cole-miller committed Mar 11, 2024
1 parent 5d033ed commit 83a129d
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/latest-deps.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,8 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4

- name: Raise aio-max-nr
run: |
sysctl fs.aio-max-nr
Expand All @@ -35,8 +37,6 @@ jobs:
sudo make install
sudo ldconfig
- uses: actions/checkout@v4

- name: Get latest SQLite
run: |
relative="$(curl -L 'https://sqlite.org/download.html' | grep '^PRODUCT' | grep 'amalgamation' | cut -d',' -f3)"
Expand All @@ -45,10 +45,11 @@ jobs:
echo "Selected $name"
unzip "$name.zip"
cd "$name"
cp sqlite3.{c,h} "$GITHUB_WORKSPACE/dqlite"
cp sqlite3.{c,h} "$GITHUB_WORKSPACE"
- name: Build dqlite
run: |
ls
autoreconf -i
./configure --enable-debug --enable-sanitize --enable-build-raft --enable-build-sqlite
make -j4 unit-test integration-test \
Expand Down

0 comments on commit 83a129d

Please sign in to comment.