-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* chore: fix markdown * chore: fix spelling * Update project.dic * chore: fix typos * Create Earthfile * Update Earthfile * Update Earthfile * Update Earthfile
- Loading branch information
Showing
6 changed files
with
75 additions
and
25 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
VERSION 0.8 | ||
|
||
IMPORT github.com/input-output-hk/catalyst-ci/earthly/rust:v3.1.24 AS rust-ci | ||
# Use when debugging cat-ci locally. | ||
# IMPORT ../../catalyst-ci/earthly/rust AS rust-ci | ||
|
||
# builder : Set up our target toolchains, and copy our files. | ||
builder: | ||
DO rust-ci+SETUP | ||
# COPY --dir .cargo .config crates bin . | ||
# COPY Cargo.toml . | ||
# COPY clippy.toml deny.toml rustfmt.toml . | ||
|
||
## ----------------------------------------------------------------------------- | ||
## | ||
## Standard CI targets. | ||
## | ||
## These targets are discovered and executed automatically by CI. | ||
|
||
# check : Run check using the most efficient host tooling | ||
# CI Automated Entry point. | ||
check: | ||
FROM +builder | ||
|
||
DO rust-ci+EXECUTE --cmd="/scripts/std_checks.py" | ||
|
||
# all-hosts-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 | ||
|
||
## ----------------------------------------------------------------------------- | ||
|
||
# local-ci-run: This step simulates the full CI run for local purposes only. | ||
local-ci-run: | ||
BUILD +check | ||
BUILD +build |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters