Skip to content

Commit

Permalink
0.13
Browse files Browse the repository at this point in the history
  • Loading branch information
Alexander Weber committed Aug 5, 2023
1 parent 33259dd commit 4e45c1d
Show file tree
Hide file tree
Showing 27 changed files with 799 additions and 1,427 deletions.
3 changes: 3 additions & 0 deletions .cargo/config.toml
Original file line number Diff line number Diff line change
@@ -1,2 +1,5 @@
[build]
rustflags = ["-C", "target-feature=+crt-static"]

[registries.crates-io]
protocol = "sparse"
10 changes: 4 additions & 6 deletions .complate/config.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
version: 0.12
version: 0.13
templates:
zero:
content:
Expand All @@ -7,8 +7,8 @@ templates:
{{ b.bravo }}
variables:
a.alpha:
static:
alpha
static: alpha
b.bravo: arg

one:
content:
Expand Down Expand Up @@ -64,9 +64,7 @@ templates:
{{ test }}
{{ _decode "dGVzdA==" }}
helpers:
"_decode":
shell: |-
printf "$(printf $VALUE | base64 -D)"
"_decode": printf "$(printf $VALUE | base64 -D)"
variables:
test:
static: "test"
32 changes: 0 additions & 32 deletions .github/workflows/wiki.yml

This file was deleted.

33 changes: 16 additions & 17 deletions .neomake.yaml
Original file line number Diff line number Diff line change
@@ -1,30 +1,29 @@
version: 0.3
version: "0.5"

chains:
nodes:
build:
matrix:
- - env:
RELEASE: ""
- env:
RELEASE: "--release"
- - env:
FEATURES: "--no-default-features"
- env:
FEATURES: ""
- env:
FEATURES: "--features=backend+cli"
- env:
FEATURES: "--features=backend+ui"
- env:
FEATURES: "--features=backend+cli --features=backend+ui"
dense:
dimensions:
- - env:
RELEASE: ""
- env:
RELEASE: "--release"
- - env:
FEATURES: "--no-default-features"
- env:
FEATURES: ""
- env:
FEATURES: "--features=backend+cli"
tasks:
- script: |
set -e
cargo build $FEATURES $RELEASE
"test:regression":
env:
config: "./test/.complate/config.yaml"
vars:
config: "./test/.complate/config.yaml"
tasks:
- script: |
set -e
Expand Down
2 changes: 1 addition & 1 deletion .rusty-hook.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[hooks]
pre-push = "neomake x -c \"hook:pre-push\""
pre-push = "neomake plan -n \"hook:pre-push\" | neomake x -w1"

[logging]
verbose = true
1 change: 0 additions & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
{
"rust-analyzer.cargo.features": [
"backend+cli",
"backend+ui",
],
}
Loading

0 comments on commit 4e45c1d

Please sign in to comment.