Skip to content

Commit b109ab8

Browse files
committed
chore: fallback to defult targett
1 parent 39d22cc commit b109ab8

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

.github/workflows/clippy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
cargo binstall -y --force trunk
2828
2929
- name: Release
30-
run: make release TARGET=x86_64-unknown-linux-gnu
30+
run: make release
3131

3232
- name: Run Clippy
3333
run: cargo clippy --all-targets --all-features -- -D warnings

.github/workflows/fmt.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
cargo binstall -y --force trunk
3030
3131
- name: Release
32-
run: make release TARGET=x86_64-unknown-linux-gnu
32+
run: make release
3333

3434
- name: Run
3535
run: cargo fmt --all -- --check

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
TARGET ?= aarch64-apple-darwin
1+
TARGET ?= $(shell rustc --version --verbose | grep host | cut -d' ' -f2)
22

33
.PHONY: default test
44

src/http-server/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
TARGET ?= aarch64-apple-darwin
1+
TARGET ?= $(shell rustc --version --verbose | grep host | cut -d' ' -f2)
22

33
.PHONY: default
44

0 commit comments

Comments
 (0)