Initial commit
Commit
This commit is contained in:
11
.woodpecker/.build.yml
Normal file
11
.woodpecker/.build.yml
Normal file
@@ -0,0 +1,11 @@
|
||||
pipeline:
|
||||
build:
|
||||
image: debian:stable-slim
|
||||
commands:
|
||||
- echo "building german variant from mdBook sources"
|
||||
- mdbook build --dest-dir doc/de
|
||||
- ls -l doc/de/*
|
||||
- cat doc/de/CNAME
|
||||
|
||||
depends_on:
|
||||
- cargo
|
||||
22
.woodpecker/.cargo.yml
Normal file
22
.woodpecker/.cargo.yml
Normal file
@@ -0,0 +1,22 @@
|
||||
workspace:
|
||||
base: /rust
|
||||
path: build/
|
||||
|
||||
matrix:
|
||||
#RUST: [ stable, beta, nightly ]
|
||||
RUST: stable
|
||||
|
||||
pipeline:
|
||||
test:
|
||||
image: rust
|
||||
environment: [ CARGO_TERM_COLOR=always ]
|
||||
when:
|
||||
branch:
|
||||
include: [ main, develop ]
|
||||
platform: linux/amd64
|
||||
commands:
|
||||
- echo "deloy the rust toolchain"
|
||||
- rustup default $RUST
|
||||
- echo "install the multilingual version of mdBook"
|
||||
- cargo install mdbook
|
||||
- cargo check
|
||||
8
.woodpecker/.deploy.yml
Normal file
8
.woodpecker/.deploy.yml
Normal file
@@ -0,0 +1,8 @@
|
||||
pipeline:
|
||||
deploy:
|
||||
image: debian:stable-slim
|
||||
commands:
|
||||
- echo deploying
|
||||
|
||||
depends_on:
|
||||
- build
|
||||
Reference in New Issue
Block a user