Compare commits

..

No commits in common. "a873329a426f669d633ee6598694501772da1519" and "5a2288fe06d41de07ab46f1da2d3a472d6c8bc60" have entirely different histories.

View file

@ -20,7 +20,7 @@ on:
jobs: jobs:
build: build:
runs-on: ubuntu-latest runs-on: debian-latest
steps: steps:
- name: Get Debian version - name: Get Debian version
@ -35,6 +35,11 @@ jobs:
with: with:
fetch-depth: 0 fetch-depth: 0
- name: Checkout repository with full history
uses: https://code.forgejo.org/actions/checkout@v4
with:
fetch-depth: 0
- name: Cache Cargo registry - name: Cache Cargo registry
uses: https://code.forgejo.org/actions/cache@v4 uses: https://code.forgejo.org/actions/cache@v4
with: with:
@ -65,15 +70,14 @@ jobs:
- name: Install build dependencies - name: Install build dependencies
run: | run: |
cargo binstall cargo-deb cargo install cargo-deb
apt-get update -y
# Build dependencies for rocksdb # Build dependencies for rocksdb
apt-get install -y clang liburing-dev apt install -y clang liburing-dev
- name: Run cargo-deb - name: Run cargo-deb
id: cargo_deb id: cargo_deb
run: | run: |
DEB_PATH=$(cargo deb) cargo deb >> $DEB_PATH
echo "path=$DEB_PATH" >> $GITHUB_OUTPUT echo "path=$DEB_PATH" >> $GITHUB_OUTPUT
- name: Test deb installation - name: Test deb installation