Skip to content

Commit be41200

Browse files
author
Alexander Weber
committed
0.13
1 parent 33259dd commit be41200

27 files changed

+798
-1427
lines changed

.cargo/config.toml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,5 @@
11
[build]
22
rustflags = ["-C", "target-feature=+crt-static"]
3+
4+
[registries.crates-io]
5+
protocol = "sparse"

.complate/config.yaml

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
version: 0.12
1+
version: 0.13
22
templates:
33
zero:
44
content:
@@ -7,8 +7,8 @@ templates:
77
{{ b.bravo }}
88
variables:
99
a.alpha:
10-
static:
11-
alpha
10+
static: alpha
11+
b.bravo: arg
1212

1313
one:
1414
content:
@@ -64,9 +64,7 @@ templates:
6464
{{ test }}
6565
{{ _decode "dGVzdA==" }}
6666
helpers:
67-
"_decode":
68-
shell: |-
69-
printf "$(printf $VALUE | base64 -D)"
67+
"_decode": printf "$(printf $VALUE | base64 -D)"
7068
variables:
7169
test:
7270
static: "test"

.github/workflows/wiki.yml

Lines changed: 0 additions & 32 deletions
This file was deleted.

.neomake.yaml

Lines changed: 16 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1,30 +1,29 @@
1-
version: 0.3
1+
version: "0.5"
22

3-
chains:
3+
nodes:
44
build:
55
matrix:
6-
- - env:
7-
RELEASE: ""
8-
- env:
9-
RELEASE: "--release"
10-
- - env:
11-
FEATURES: "--no-default-features"
12-
- env:
13-
FEATURES: ""
14-
- env:
15-
FEATURES: "--features=backend+cli"
16-
- env:
17-
FEATURES: "--features=backend+ui"
18-
- env:
19-
FEATURES: "--features=backend+cli --features=backend+ui"
6+
dense:
7+
dimensions:
8+
- - env:
9+
RELEASE: ""
10+
- env:
11+
RELEASE: "--release"
12+
- - env:
13+
FEATURES: "--no-default-features"
14+
- env:
15+
FEATURES: ""
16+
- env:
17+
FEATURES: "--features=backend+cli"
2018
tasks:
2119
- script: |
2220
set -e
2321
cargo build $FEATURES $RELEASE
2422
2523
"test:regression":
2624
env:
27-
config: "./test/.complate/config.yaml"
25+
vars:
26+
config: "./test/.complate/config.yaml"
2827
tasks:
2928
- script: |
3029
set -e

.rusty-hook.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[hooks]
2-
pre-push = "neomake x -c \"hook:pre-push\""
2+
pre-push = "neomake plan -n \"hook:pre-push\" | neomake x -w1"
33

44
[logging]
55
verbose = true

.vscode/settings.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
{
22
"rust-analyzer.cargo.features": [
33
"backend+cli",
4-
"backend+ui",
54
],
65
}

0 commit comments

Comments
 (0)