Skip to content

Commit

Permalink
Adding BUILD_SCRIPT_DISABLED=1 to debian packagers
Browse files Browse the repository at this point in the history
  • Loading branch information
djpolygon committed Oct 1, 2024
1 parent a0c9a19 commit 78a7463
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/arm_deb_packager.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,9 @@ jobs:
run: make build

- name: Build the rust binary
run: cargo build --release --bin cdk
run: |
BUILD_SCRIPT_DISABLED=1
cargo build --release --bin cdk
- name: making directory structure
run: mkdir -p packaging/deb/cdk/usr/bin/
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/x86_deb_packager.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,9 @@ jobs:
run: make build

- name: Build the rust binary
run: cargo build --release --bin cdk
run: |
BUILD_SCRIPT_DISABLED=1
cargo build --release --bin cdk
- name: making directory structure
run: mkdir -p packaging/deb/cdk/usr/bin/
Expand Down

0 comments on commit 78a7463

Please sign in to comment.