Skip to content

Commit 5c7b347

Browse files
authored
fix: release dep (#36)
## What type of PR is this? - [ ] feat (new feature) - [x] fix (bug fix) - [ ] docs (documentation) - [ ] style (formatting, no code change) - [ ] refactor (code change that neither fixes a bug nor adds a feature) - [ ] perf (performance improvement) - [ ] test (adding or updating tests) - [ ] chore (maintenance, tooling) - [ ] build / ci (build or CI changes) ## Which issue(s) this PR fixes Fixes # ## What this PR does / why we need it fix release dep
1 parent c75d3d9 commit 5c7b347

2 files changed

Lines changed: 4 additions & 2 deletions

File tree

.github/workflows/release-rust.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,14 +55,14 @@ jobs:
5555
working-directory: memoria
5656
env:
5757
SQLX_OFFLINE: "true"
58-
run: cross build --release --target ${{ matrix.target }}
58+
run: cross build --release -p memoria-cli --target ${{ matrix.target }}
5959

6060
- name: Build (native)
6161
if: ${{ !matrix.cross }}
6262
working-directory: memoria
6363
env:
6464
SQLX_OFFLINE: "true"
65-
run: cargo build --release --target ${{ matrix.target }}
65+
run: cargo build --release -p memoria-cli --target ${{ matrix.target }}
6666

6767
- name: Package
6868
run: |

memoria/Cross.toml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
[target.aarch64-unknown-linux-gnu]
2+
pre-build = ["apt-get update && apt-get install -y pkg-config libssl-dev"]

0 commit comments

Comments
 (0)