fix gh-pages build

This commit is contained in:
Jorge Aparicio 2019-09-15 20:19:48 +02:00
parent 4ff28e9d13
commit c8197f524e
5 changed files with 38 additions and 15 deletions

View file

@ -5,13 +5,13 @@ authors = [
] ]
categories = ["concurrency", "embedded", "no-std"] categories = ["concurrency", "embedded", "no-std"]
description = "Real Time For the Masses (RTFM): a concurrency framework for building real time systems" description = "Real Time For the Masses (RTFM): a concurrency framework for building real time systems"
documentation = "https://japaric.github.io/cortex-m-rtfm/book/en" documentation = "https://rtfm-rs.github.io/cortex-m-rtfm/book/en"
edition = "2018" edition = "2018"
keywords = ["arm", "cortex-m"] keywords = ["arm", "cortex-m"]
license = "MIT OR Apache-2.0" license = "MIT OR Apache-2.0"
name = "cortex-m-rtfm" name = "cortex-m-rtfm"
readme = "README.md" readme = "README.md"
repository = "https://github.com/japaric/cortex-m-rtfm" repository = "https://github.com/rtfm-rs/cortex-m-rtfm"
version = "0.5.0-beta.1" version = "0.5.0-beta.1"
[lib] [lib]
@ -48,7 +48,7 @@ required-features = ["__v7"]
[dependencies] [dependencies]
cortex-m = "0.6.0" cortex-m = "0.6.0"
cortex-m-rtfm-macros = { path = "macros" } cortex-m-rtfm-macros = { path = "macros" }
rtfm-core = { git = "https://github.com/japaric/rtfm-core" } rtfm-core = { git = "https://github.com/rtfm-rs/rtfm-core" }
cortex-m-rt = "0.6.9" cortex-m-rt = "0.6.9"
heapless = "0.5.0" heapless = "0.5.0"

View file

@ -2,20 +2,44 @@ set -euxo pipefail
main() { main() {
local langs=( en ru ) local langs=( en ru )
local vers=( 0.4.3 )
rm -f .cargo/config rm -f .cargo/config
cargo doc --features timer-queue cargo doc
local td=$(mktemp -d) local td=$(mktemp -d)
# build latest docs
cp -r target/doc $td/api cp -r target/doc $td/api
mkdir $td/book/ mkdir $td/book/
cp redirect.html $td/book/index.html cp redirect.html $td/index.html
for lang in ${langs[@]}; do for lang in ${langs[@]}; do
( cd book/$lang && mdbook build ) ( cd book/$lang && mdbook build )
cp -r book/$lang/book $td/book/$lang cp -r book/$lang/book $td/book/$lang
cp LICENSE-* $td/book/$lang/ cp LICENSE-* $td/book/$lang/
done done
# build older docs
for ver in ${vers[@]}; do
local prefix=${ver%.*}
mkdir -p $td/$prefix/book
local src=$(mktemp -d)
curl -L https://github.com/rtfm-rs/cortex-m-rtfm/archive/v${ver}.tar.gz | tar xz --strip-components 1 -C $src
pushd $src
cargo doc || cargo doc --features timer-queue
cp -r target/doc $td/$prefix/api
for lang in ${langs[@]}; do
( cd book/$lang && mdbook build )
cp -r book/$lang/book $td/$prefix/book/$lang
cp LICENSE-* $td/$prefix/book/$lang/
done
popd
rm -rf $src
done
mkdir ghp-import mkdir ghp-import
curl -Ls https://github.com/davisp/ghp-import/archive/master.tar.gz | curl -Ls https://github.com/davisp/ghp-import/archive/master.tar.gz |
tar --strip-components 1 -C ghp-import -xz tar --strip-components 1 -C ghp-import -xz
@ -23,8 +47,7 @@ main() {
./ghp-import/ghp_import.py $td ./ghp-import/ghp_import.py $td
set +x set +x
# NOTE push documentation to a different repository git push -fq https://$GH_TOKEN@github.com/rtfm-rs/cortex-m-rtfm.git gh-pages && echo OK
git push -fq https://$GH_TOKEN@github.com/japaric/rtfm5.git gh-pages && echo OK
rm -rf $td rm -rf $td
} }

View file

@ -2,13 +2,13 @@
authors = ["Jorge Aparicio <jorge@japaric.io>"] authors = ["Jorge Aparicio <jorge@japaric.io>"]
categories = ["concurrency", "embedded", "no-std"] categories = ["concurrency", "embedded", "no-std"]
description = "Procedural macros of the cortex-m-rtfm crate" description = "Procedural macros of the cortex-m-rtfm crate"
documentation = "https://japaric.github.io/cortex-m-rtfm/api/cortex_m_rtfm" documentation = "https://rtfm-rs.github.io/cortex-m-rtfm/api/cortex_m_rtfm"
edition = "2018" edition = "2018"
keywords = ["arm", "cortex-m"] keywords = ["arm", "cortex-m"]
license = "MIT OR Apache-2.0" license = "MIT OR Apache-2.0"
name = "cortex-m-rtfm-macros" name = "cortex-m-rtfm-macros"
readme = "../README.md" readme = "../README.md"
repository = "https://github.com/japaric/cortex-m-rtfm" repository = "https://github.com/rtfm-rs/cortex-m-rtfm"
version = "0.5.0-alpha.1" version = "0.5.0-alpha.1"
[lib] [lib]
@ -20,7 +20,7 @@ quote = "1"
syn = "1" syn = "1"
[dependencies.rtfm-syntax] [dependencies.rtfm-syntax]
git = "https://github.com/japaric/rtfm-syntax" git = "https://github.com/rtfm-rs/rtfm-syntax"
[features] [features]
heterogeneous = [] heterogeneous = []

View file

@ -89,9 +89,9 @@ mod tests;
/// ///
/// - `resources: <fn-name>::Resources`. A `struct` that contains all the resources that can be /// - `resources: <fn-name>::Resources`. A `struct` that contains all the resources that can be
/// accessed from this context. Each field is a different resource; each resource may appear as a /// accessed from this context. Each field is a different resource; each resource may appear as a
/// reference (`&[mut]-`) or as proxy structure that implements the [`rftm::Mutex`] trait. /// reference (`&[mut]-`) or as proxy structure that implements the [`rftm::Mutex`][rtfm-mutex] trait.
/// ///
/// [`rtfm::Mutex`]: ../rtfm/trait.Mutex.html /// [rtfm-mutex]: ../rtfm/trait.Mutex.html
/// ///
/// - `schedule: <fn-name>::Schedule`. A `struct` that can be used to schedule *software* tasks. /// - `schedule: <fn-name>::Schedule`. A `struct` that can be used to schedule *software* tasks.
/// ///

View file

@ -3,14 +3,14 @@
<html lang="en-US"> <html lang="en-US">
<head> <head>
<meta charset="UTF-8"> <meta charset="UTF-8">
<meta http-equiv="refresh" content="0; url=https://japaric.github.io/cortex-m-rtfm/book/en/"> <meta http-equiv="refresh" content="0; url=https://rtfm-rs.github.io/cortex-m-rtfm/book/en/">
<script type="text/javascript"> <script type="text/javascript">
window.location.href = "https://japaric.github.io/cortex-m-rtfm/book/en/" window.location.href = "https://rtfm-rs.github.io/cortex-m-rtfm/book/en/"
</script> </script>
<title>Page Redirection</title> <title>Page Redirection</title>
</head> </head>
<body> <body>
<!-- Note: don't tell people to `click` the link, just tell them that it is a link. --> <!-- Note: don't tell people to `click` the link, just tell them that it is a link. -->
If you are not redirected automatically, follow this <a href='https://japaric.github.io/cortex-m-rtfm/book/en/'>link to example</a>. If you are not redirected automatically, follow this <a href='https://rtfm-rs.github.io/cortex-m-rtfm/book/en/'>link to example</a>.
</body> </body>
</html> </html>