Skip to content

Commit 0d9a3c4

Browse files
authored
refactor: removes blueprint version and adds top-level data field (#167)
1 parent 96ded48 commit 0d9a3c4

File tree

41 files changed

+72
-425
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

41 files changed

+72
-425
lines changed

actions/setup/README.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@ Add a `blueprint.cue` to the root of your repository and add configuration for i
1111
Here is an example:
1212

1313
```cue
14-
version: "1.0"
1514
ci: {
1615
providers: {
1716
aws: {
@@ -76,7 +75,6 @@ The below list documents the expected format for each provider:
7675
If the secret uses a different format, the `maps` field of the secret can be used to map them correctly:
7776

7877
```cue
79-
version: "1.0"
8078
ci: {
8179
providers: {
8280
docker: {

blueprint.cue

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
version: "1.0"
21
global: {
32
ci: {
43
local: [

cli/blueprint.cue

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
version: "1.0"
21
project: {
32
name: "forge-cli"
43
ci: targets: {

cli/cmd/testdata/run/1.txt

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@ Image ./dir1+test output as test
1111
-- earthly_stdout.txt --
1212
Image ./dir1+test output as test
1313
-- dir1/blueprint.cue --
14-
version: "1.0.0"
1514
project: name: "dir1"
1615
-- dir1/Earthfile --
1716
VERSION 0.8

cli/cmd/testdata/run/2.txt

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@ Artifact ./dir1+test output as test
1515
Image ./dir1+test output as test
1616
Artifact ./dir1+test output as test
1717
-- dir1/blueprint.cue --
18-
version: "1.0.0"
1918
project: name: "dir1"
2019
-- dir1/Earthfile --
2120
VERSION 0.8

cli/cmd/testdata/run/3.txt

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@ Artifact ./dir1+test output as test
1717
Image ./dir1+test output as test
1818
Artifact ./dir1+test output as test
1919
-- dir1/blueprint.cue --
20-
version: "1.0.0"
2120
project: name: "dir1"
2221
-- dir1/Earthfile --
2322
VERSION 0.8

cli/cmd/testdata/run/4.txt

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,6 @@ Artifact ./dir1+test output as test
1919
Image ./dir1+test output as test
2020
Artifact ./dir1+test output as test
2121
-- dir1/blueprint.cue --
22-
version: "1.0.0"
2322
project: name: "dir1"
2423
-- dir1/Earthfile --
2524
VERSION 0.8

cli/cmd/testdata/run/5.txt

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,6 @@ Image ./dir1+test output as test
2020
-- dir1/Earthfile --
2121
VERSION 0.8
2222
-- dir1/blueprint.cue --
23-
version: "1.0"
2423
project: {
2524
name: "test"
2625
ci: {

cli/cmd/testdata/run/6.txt

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@ Image ./dir1+test output as test
1717
-- dir1/Earthfile --
1818
VERSION 0.8
1919
-- dir1/blueprint.cue --
20-
version: "1.0"
2120
project: {
2221
name: "test"
2322
ci: {

cli/cmd/testdata/scan/1.txt

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,6 @@ cmp stdout golden.txt
66
-- golden.txt --
77
["./dir1","./dir2"]
88
-- dir1/blueprint.cue --
9-
version: "1.0"
109
project: name: "dir1"
1110
-- dir2/blueprint.cue --
12-
version: "1.0"
1311
project: name: "dir2"

0 commit comments

Comments
 (0)