summaryrefslogtreecommitdiffstats
path: root/.builds/nixos.yml
diff options
context:
space:
mode:
authorMatthias Beyer <mail@beyermatthias.de>2020-04-29 11:09:50 +0200
committerMatthias Beyer <mail@beyermatthias.de>2020-04-29 11:09:50 +0200
commit50befbedeb9c987d78b12a5cce81b1a9ea95f535 (patch)
tree77b15d55d81ef214f45257fb94a811cad109011c /.builds/nixos.yml
parent3b344e015c753f02f9cb033e8f0466e53b45445a (diff)
Replace default.nix with shell.nix
Use the ci.nix and move it to shell.nix. With this, default.nix is no longer needed. Docs and CI configuration is adapted. Signed-off-by: Matthias Beyer <mail@beyermatthias.de>
Diffstat (limited to '.builds/nixos.yml')
-rw-r--r--.builds/nixos.yml8
1 files changed, 4 insertions, 4 deletions
diff --git a/.builds/nixos.yml b/.builds/nixos.yml
index eef09fab..5fee7051 100644
--- a/.builds/nixos.yml
+++ b/.builds/nixos.yml
@@ -12,19 +12,19 @@ tasks:
bash ./scripts/version-updated
- install: |
cd imag
- nix-shell ./ci.nix --run "echo nix-shell ready"
+ nix-shell ./shell.nix --run "echo nix-shell ready"
- userdoc: |
cd imag
- nix-shell ./ci.nix --run "cargo install mdbook --force"
+ nix-shell ./shell.nix --run "cargo install mdbook --force"
cd doc/user
~/.cargo/bin/mdbook build
- build: |
cd imag
- nix-shell ./ci.nix --run "cargo build --all --all-features"
+ nix-shell ./shell.nix --run "cargo build --all --all-features"
- prepare-test: |
git config --global user.name "Test user"
git config --global user.email "test@user.tld"
- test: |
cd imag
- nix-shell ./ci.nix --run "cargo test --all --all-features"
+ nix-shell ./shell.nix --run "cargo test --all --all-features"