mirror of
https://github.com/GothenburgBitFactory/taskwarrior.git
synced 2025-08-23 05:27:47 +02:00
commit
b3a0fe9f20
8 changed files with 50 additions and 0 deletions
|
@ -44,3 +44,30 @@ tasks:
|
||||||
description: Run tests for taskchampion
|
description: Run tests for taskchampion
|
||||||
owner: dustin@v.igoro.us
|
owner: dustin@v.igoro.us
|
||||||
source: ${repo_url}
|
source: ${repo_url}
|
||||||
|
- $if: run
|
||||||
|
then:
|
||||||
|
provisionerId: 'proj-misc'
|
||||||
|
workerType: 'ci'
|
||||||
|
deadline: {$fromNow: '1 hour'}
|
||||||
|
expires: {$fromNow: '1 day'}
|
||||||
|
payload:
|
||||||
|
maxRunTime: 3600
|
||||||
|
image: rust:latest
|
||||||
|
command:
|
||||||
|
- /bin/bash
|
||||||
|
- '-c'
|
||||||
|
- >-
|
||||||
|
git clone ${repo_url} repo &&
|
||||||
|
cd repo &&
|
||||||
|
git config advice.detachedHead false &&
|
||||||
|
git checkout ${ref} &&
|
||||||
|
cd docs &&
|
||||||
|
curl -L --compressed https://github.com/rust-lang/mdBook/releases/download/v0.4.4/mdbook-v0.4.4-x86_64-unknown-linux-gnu.tar.gz | gunzip -c | tar -xf - &&
|
||||||
|
chmod +x mdbook &&
|
||||||
|
./mdbook test &&
|
||||||
|
./mdbook build
|
||||||
|
metadata:
|
||||||
|
name: taskchampion-book
|
||||||
|
description: Verify that the docs build with mdbook
|
||||||
|
owner: dustin@v.igoro.us
|
||||||
|
source: ${repo_url}
|
||||||
|
|
1
docs/.gitignore
vendored
Normal file
1
docs/.gitignore
vendored
Normal file
|
@ -0,0 +1 @@
|
||||||
|
book
|
3
docs/README.md
Normal file
3
docs/README.md
Normal file
|
@ -0,0 +1,3 @@
|
||||||
|
This is an [mdbook](https://rust-lang.github.io/mdBook/index.html) book.
|
||||||
|
Minor modifications can be made without installing the mdbook tool, as the content is simple Markdown.
|
||||||
|
Changes are verified on pull requests.
|
6
docs/book.toml
Normal file
6
docs/book.toml
Normal file
|
@ -0,0 +1,6 @@
|
||||||
|
[book]
|
||||||
|
authors = ["Dustin J. Mitchell"]
|
||||||
|
language = "en"
|
||||||
|
multilingual = false
|
||||||
|
src = "src"
|
||||||
|
title = "TaskChampion"
|
6
docs/src/SUMMARY.md
Normal file
6
docs/src/SUMMARY.md
Normal file
|
@ -0,0 +1,6 @@
|
||||||
|
# Summary
|
||||||
|
|
||||||
|
- [Installation](./installation.md)
|
||||||
|
- [Usage](./usage.md)
|
||||||
|
---
|
||||||
|
- [Development Notes](./development-notes.md)
|
3
docs/src/installation.md
Normal file
3
docs/src/installation.md
Normal file
|
@ -0,0 +1,3 @@
|
||||||
|
# Installation
|
||||||
|
|
||||||
|
As this is currently in development, installation is by cloning the repository and running "cargo build".
|
4
docs/src/usage.md
Normal file
4
docs/src/usage.md
Normal file
|
@ -0,0 +1,4 @@
|
||||||
|
# Usage
|
||||||
|
|
||||||
|
The main interface to your tasks is the `task` command, which supports various subcommands.
|
||||||
|
You can find a quick list of all subcommands with `task help`.
|
Loading…
Add table
Add a link
Reference in a new issue