Skip to content

Commit 4291806

Browse files
committed
test ci
1 parent 6178014 commit 4291806

File tree

3 files changed

+10
-6
lines changed

3 files changed

+10
-6
lines changed

rust/Earthfile

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ check:
4949
DO rust-ci+EXECUTE --cmd="/scripts/std_checks.py"
5050

5151
# build : Build crates.
52-
build:
52+
base-build:
5353
FROM +builder-src
5454

5555
DO rust-ci+EXECUTE \
@@ -65,7 +65,11 @@ build:
6565
--docs="true"
6666

6767
SAVE ARTIFACT target/doc doc
68-
SAVE ARTIFACT target/release/cbork cbork
68+
69+
build:
70+
BUILD +base-build
71+
BUILD ./cbork/+cbork-build
72+
BUILD ./c509-certificate/+c509-wasm-build
6973

7074
# build-src-check: Check for any caching issues with the source we are building against.
7175
check-builder-src-cache:

rust/c509-certificate/Earthfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@ IMPORT ../.. AS repo
1313
# - Create a publish target which can publish the library to NPM for both Web and NodeJS.
1414
# - Create a simple example web app and nodejs app which uses the library, and can be used to
1515
# test it after publishing.
16-
build-wasm:
17-
FROM rust-local+build
16+
c509-wasm-build:
17+
FROM rust-local+base-build
1818

1919
COPY repo+repo-docs/repo/LICENSE-APACHE c509-certificate/.
2020
COPY repo+repo-docs/repo/LICENSE-MIT c509-certificate/.

rust/cbork/Earthfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ IMPORT .. AS rust-local
77

88
# Run build using the most efficient host tooling
99
# CI Automated Entry point.
10-
build:
11-
FROM rust-local+build
10+
cbork-build:
11+
FROM rust-local+base-build
1212

1313
SAVE ARTIFACT target/release/cbork cbork

0 commit comments

Comments
 (0)