Skip to content

Commit

Permalink
fix: rename target
Browse files Browse the repository at this point in the history
  • Loading branch information
bkioshn committed Dec 12, 2023
1 parent 51f81d8 commit 2b9081c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions examples/rust/Earthfile
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ hosted-check:
# Test which runs check with all supported host tooling. Needs qemu or rosetta to run.
# Only used to validate tooling is working across host toolsets.
all-hosts-check:
BUILD --platform=linux/amd64 --platform=linux/arm64 +check-hosted
BUILD --platform=linux/amd64 --platform=linux/arm64 +hosted-check


# Build the service.
Expand Down Expand Up @@ -56,9 +56,9 @@ check:
ARG USERARCH

IF [ "$USERARCH" == "arm64" ]
BUILD --platform=linux/arm64 +check-hosted
BUILD --platform=linux/arm64 +hosted-check
ELSE
BUILD --platform=linux/amd64 +check-hosted
BUILD --platform=linux/amd64 +hosted-check
END

# Run build using the most efficient host tooling
Expand Down

0 comments on commit 2b9081c

Please sign in to comment.