2020-05-31 12:12:29 +02:00
|
|
|
name: Build
|
|
|
|
on:
|
|
|
|
pull_request:
|
2020-06-11 21:00:32 +02:00
|
|
|
push:
|
2020-05-31 12:12:29 +02:00
|
|
|
branches:
|
|
|
|
- master
|
2020-06-11 21:00:32 +02:00
|
|
|
- staging
|
2020-06-11 21:10:03 +02:00
|
|
|
- trying
|
2020-05-31 12:12:29 +02:00
|
|
|
|
|
|
|
env:
|
|
|
|
CARGO_TERM_COLOR: always
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
# Run cargo fmt --check, includes macros/
|
|
|
|
style:
|
2020-06-11 21:00:32 +02:00
|
|
|
name: style
|
2020-08-24 13:51:21 +02:00
|
|
|
runs-on: ubuntu-20.04
|
2020-05-31 12:12:29 +02:00
|
|
|
steps:
|
|
|
|
- name: Checkout
|
|
|
|
uses: actions/checkout@v1
|
|
|
|
|
|
|
|
- name: Install Rust
|
|
|
|
uses: actions-rs/toolchain@v1
|
|
|
|
with:
|
|
|
|
profile: minimal
|
|
|
|
toolchain: stable
|
|
|
|
override: true
|
|
|
|
components: rustfmt
|
|
|
|
|
|
|
|
- name: cargo fmt --check
|
|
|
|
uses: actions-rs/cargo@v1
|
|
|
|
with:
|
|
|
|
command: fmt
|
|
|
|
args: --all -- --check
|
|
|
|
|
|
|
|
# Compilation check
|
|
|
|
check:
|
2020-06-11 21:00:32 +02:00
|
|
|
name: check
|
2020-08-24 13:51:21 +02:00
|
|
|
runs-on: ubuntu-20.04
|
2020-05-31 12:12:29 +02:00
|
|
|
strategy:
|
|
|
|
matrix:
|
|
|
|
target:
|
|
|
|
- thumbv7m-none-eabi
|
|
|
|
- thumbv6m-none-eabi
|
|
|
|
- x86_64-unknown-linux-gnu
|
|
|
|
toolchain:
|
|
|
|
- stable
|
|
|
|
steps:
|
|
|
|
- name: Checkout
|
|
|
|
uses: actions/checkout@v2
|
|
|
|
|
2020-06-16 08:56:51 +02:00
|
|
|
- name: Cache cargo dependencies
|
|
|
|
uses: actions/cache@v2
|
|
|
|
with:
|
|
|
|
path: |
|
|
|
|
- ~/.cargo/bin/
|
|
|
|
- ~/.cargo/registry/index/
|
|
|
|
- ~/.cargo/registry/cache/
|
|
|
|
- ~/.cargo/git/db/
|
|
|
|
key: ${{ runner.OS }}-cargo-${{ hashFiles('**/Cargo.lock') }}
|
|
|
|
restore-keys: |
|
|
|
|
${{ runner.OS }}-cargo-${{ hashFiles('**/Cargo.lock') }}
|
|
|
|
${{ runner.OS }}-cargo-
|
|
|
|
|
|
|
|
- name: Cache build output dependencies
|
|
|
|
uses: actions/cache@v2
|
|
|
|
with:
|
|
|
|
path: target
|
|
|
|
key: ${{ runner.OS }}-build-${{ hashFiles('**/Cargo.lock') }}
|
|
|
|
restore-keys: |
|
|
|
|
${{ runner.OS }}-build-${{ hashFiles('**/Cargo.lock') }}
|
|
|
|
${{ runner.OS }}-build-
|
|
|
|
|
2020-05-31 12:12:29 +02:00
|
|
|
- name: Install Rust ${{ matrix.toolchain }} with target (${{ matrix.target }})
|
|
|
|
uses: actions-rs/toolchain@v1
|
|
|
|
with:
|
|
|
|
toolchain: ${{ matrix.toolchain }}
|
|
|
|
target: ${{ matrix.target }}
|
|
|
|
override: true
|
|
|
|
|
|
|
|
- name: cargo check
|
|
|
|
uses: actions-rs/cargo@v1
|
|
|
|
with:
|
|
|
|
use-cross: false
|
|
|
|
command: check
|
|
|
|
args: --target=${{ matrix.target }}
|
|
|
|
|
|
|
|
# Verify all examples
|
|
|
|
checkexamples:
|
2020-06-11 21:00:32 +02:00
|
|
|
name: checkexamples
|
2020-08-24 13:51:21 +02:00
|
|
|
runs-on: ubuntu-20.04
|
2020-05-31 12:12:29 +02:00
|
|
|
strategy:
|
|
|
|
matrix:
|
|
|
|
target:
|
|
|
|
- thumbv7m-none-eabi
|
|
|
|
- thumbv6m-none-eabi
|
|
|
|
toolchain:
|
|
|
|
- stable
|
|
|
|
steps:
|
|
|
|
- name: Checkout
|
|
|
|
uses: actions/checkout@v2
|
|
|
|
|
2020-06-16 08:56:51 +02:00
|
|
|
- name: Cache cargo dependencies
|
|
|
|
uses: actions/cache@v2
|
|
|
|
with:
|
|
|
|
path: |
|
|
|
|
- ~/.cargo/bin/
|
|
|
|
- ~/.cargo/registry/index/
|
|
|
|
- ~/.cargo/registry/cache/
|
|
|
|
- ~/.cargo/git/db/
|
|
|
|
key: ${{ runner.OS }}-cargo-${{ hashFiles('**/Cargo.lock') }}
|
|
|
|
restore-keys: |
|
|
|
|
${{ runner.OS }}-cargo-${{ hashFiles('**/Cargo.lock') }}
|
|
|
|
${{ runner.OS }}-cargo-
|
|
|
|
|
|
|
|
- name: Cache build output dependencies
|
|
|
|
uses: actions/cache@v2
|
|
|
|
with:
|
|
|
|
path: target
|
|
|
|
key: ${{ runner.OS }}-build-${{ hashFiles('**/Cargo.lock') }}
|
|
|
|
restore-keys: |
|
|
|
|
${{ runner.OS }}-build-${{ hashFiles('**/Cargo.lock') }}
|
|
|
|
${{ runner.OS }}-build-
|
|
|
|
|
2020-05-31 12:12:29 +02:00
|
|
|
- name: Install Rust ${{ matrix.toolchain }} with target (${{ matrix.target }})
|
|
|
|
uses: actions-rs/toolchain@v1
|
|
|
|
with:
|
|
|
|
toolchain: ${{ matrix.toolchain }}
|
|
|
|
target: ${{ matrix.target }}
|
|
|
|
override: true
|
2020-07-23 18:56:41 +02:00
|
|
|
components: llvm-tools-preview
|
2020-09-23 15:51:07 +02:00
|
|
|
|
|
|
|
- name: Check the examples
|
|
|
|
if: matrix.target == 'thumbv7m-none-eabi'
|
|
|
|
env:
|
|
|
|
V7: __v7
|
|
|
|
uses: actions-rs/cargo@v1
|
2020-05-31 12:12:29 +02:00
|
|
|
with:
|
|
|
|
use-cross: false
|
|
|
|
command: check
|
2020-09-23 15:51:07 +02:00
|
|
|
args: --examples --target=${{ matrix.target }} --features __min_r1_43,${{ env.V7 }}
|
2020-05-31 12:12:29 +02:00
|
|
|
|
2020-07-26 00:37:08 +02:00
|
|
|
# Use precompiled binutils
|
2020-07-23 18:56:41 +02:00
|
|
|
- name: cargo install cargo-binutils
|
|
|
|
uses: actions-rs/install@v0.1
|
|
|
|
with:
|
|
|
|
crate: cargo-binutils
|
|
|
|
version: latest
|
|
|
|
use-tool-cache: true
|
|
|
|
|
2020-05-31 12:12:29 +02:00
|
|
|
- name: Install QEMU
|
|
|
|
run: |
|
2020-08-24 13:57:53 +02:00
|
|
|
sudo apt update
|
|
|
|
sudo apt install -y qemu-system-arm
|
2020-06-16 08:56:51 +02:00
|
|
|
|
2020-05-31 12:12:29 +02:00
|
|
|
- name: Run-pass tests
|
|
|
|
run: |
|
2020-06-16 08:56:51 +02:00
|
|
|
# Print the path
|
2020-05-31 12:12:29 +02:00
|
|
|
echo $PATH
|
2020-07-14 17:48:59 +02:00
|
|
|
|
2020-05-31 12:12:29 +02:00
|
|
|
arm_example() {
|
|
|
|
local COMMAND=$1
|
|
|
|
local EXAMPLE=$2
|
|
|
|
local BUILD_MODE=$3
|
|
|
|
local FEATURES=$4
|
|
|
|
local BUILD_NUM=$5
|
|
|
|
|
|
|
|
if [ $BUILD_MODE = "release" ]; then
|
|
|
|
local RELEASE_FLAG="--release"
|
|
|
|
else
|
|
|
|
local RELEASE_FLAG=""
|
|
|
|
fi
|
|
|
|
|
|
|
|
if [ -n "$FEATURES" ]; then
|
|
|
|
local FEATURES_FLAG="--features $FEATURES"
|
|
|
|
local FEATURES_STR=${FEATURES/,/_}_
|
|
|
|
else
|
|
|
|
local FEATURES_FLAG=""
|
|
|
|
local FEATURES_STR=""
|
|
|
|
fi
|
|
|
|
local CARGO_FLAGS="--example $EXAMPLE --target ${{ matrix.target }} $RELEASE_FLAG $FEATURES_FLAG"
|
|
|
|
|
|
|
|
if [ $COMMAND = "run" ]; then
|
|
|
|
cargo $COMMAND $CARGO_FLAGS | diff -u ci/expected/$EXAMPLE.run -
|
|
|
|
else
|
|
|
|
cargo $COMMAND $CARGO_FLAGS
|
|
|
|
fi
|
2020-07-23 18:56:41 +02:00
|
|
|
cargo objcopy $CARGO_FLAGS -- -O ihex ci/builds/${EXAMPLE}_${FEATURES_STR}${BUILD_MODE}_${BUILD_NUM}.hex
|
2020-05-31 12:12:29 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
mkdir -p ci/builds
|
|
|
|
exs=(
|
|
|
|
idle
|
|
|
|
init
|
|
|
|
hardware
|
|
|
|
preempt
|
|
|
|
binds
|
|
|
|
|
|
|
|
resource
|
|
|
|
lock
|
|
|
|
late
|
|
|
|
only-shared-access
|
|
|
|
|
|
|
|
task
|
|
|
|
message
|
|
|
|
capacity
|
|
|
|
|
|
|
|
types
|
|
|
|
not-send
|
|
|
|
not-sync
|
|
|
|
shared-with-init
|
|
|
|
|
|
|
|
generics
|
|
|
|
cfg
|
|
|
|
pool
|
|
|
|
ramfunc
|
2020-06-30 21:23:35 +02:00
|
|
|
|
|
|
|
peripherals-taken
|
2020-05-31 12:12:29 +02:00
|
|
|
)
|
|
|
|
|
|
|
|
for ex in ${exs[@]}; do
|
|
|
|
if [ $ex = pool ]; then
|
|
|
|
if [ ${{ matrix.target }} = thumbv6m-none-eabi ]; then
|
|
|
|
continue
|
|
|
|
fi
|
|
|
|
|
|
|
|
td=$(mktemp -d)
|
|
|
|
|
|
|
|
cargo run --example $ex --target ${{ matrix.target }} --features __v7 >\
|
|
|
|
$td/pool.run
|
|
|
|
grep 'foo(0x2' $td/pool.run
|
|
|
|
grep 'bar(0x2' $td/pool.run
|
2020-07-23 18:56:41 +02:00
|
|
|
cargo objcopy --example $ex --target ${{ matrix.target }} --features __v7 -- -O ihex ci/builds/${ex}___v7_debug_1.hex
|
2020-05-31 12:12:29 +02:00
|
|
|
|
|
|
|
cargo run --example $ex --target ${{ matrix.target }} --features __v7 --release >\
|
|
|
|
$td/pool.run
|
|
|
|
grep 'foo(0x2' $td/pool.run
|
|
|
|
grep 'bar(0x2' $td/pool.run
|
2020-07-23 18:56:41 +02:00
|
|
|
cargo objcopy --example $ex --target ${{ matrix.target }} --features __v7 --release -- -O ihex ci/builds/${ex}___v7_release_1.hex
|
2020-05-31 12:12:29 +02:00
|
|
|
|
|
|
|
rm -rf $td
|
|
|
|
|
|
|
|
continue
|
|
|
|
fi
|
|
|
|
|
|
|
|
if [ $ex = types ]; then
|
|
|
|
if [ ${{ matrix.target }} = thumbv6m-none-eabi ]; then
|
|
|
|
continue
|
|
|
|
fi
|
|
|
|
|
|
|
|
arm_example "run" $ex "debug" "__v7" "1"
|
|
|
|
arm_example "run" $ex "release" "__v7" "1"
|
|
|
|
|
|
|
|
continue
|
|
|
|
fi
|
|
|
|
|
|
|
|
arm_example "run" $ex "debug" "" "1"
|
|
|
|
if [ $ex = types ]; then
|
|
|
|
arm_example "run" $ex "release" "" "1"
|
|
|
|
else
|
|
|
|
arm_example "build" $ex "release" "" "1"
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
|
|
|
|
built=()
|
|
|
|
cargo clean
|
|
|
|
for ex in ${exs[@]}; do
|
|
|
|
if [ $ex = types ] || [ $ex = pool ]; then
|
|
|
|
if [ ${{ matrix.target }} = thumbv6m-none-eabi ]; then
|
|
|
|
continue
|
|
|
|
fi
|
|
|
|
|
|
|
|
arm_example "build" $ex "debug" "__v7" "2"
|
|
|
|
cmp ci/builds/${ex}___v7_debug_1.hex \
|
|
|
|
ci/builds/${ex}___v7_debug_2.hex
|
|
|
|
arm_example "build" $ex "release" "__v7" "2"
|
|
|
|
cmp ci/builds/${ex}___v7_release_1.hex \
|
|
|
|
ci/builds/${ex}___v7_release_2.hex
|
|
|
|
else
|
|
|
|
arm_example "build" $ex "debug" "" "2"
|
|
|
|
cmp ci/builds/${ex}_debug_1.hex \
|
|
|
|
ci/builds/${ex}_debug_2.hex
|
|
|
|
arm_example "build" $ex "release" "" "2"
|
|
|
|
cmp ci/builds/${ex}_release_1.hex \
|
|
|
|
ci/builds/${ex}_release_2.hex
|
|
|
|
fi
|
|
|
|
|
|
|
|
built+=( $ex )
|
|
|
|
done
|
|
|
|
|
|
|
|
( cd target/${{ matrix.target }}/release/examples/ && size ${built[@]} )
|
|
|
|
|
|
|
|
|
|
|
|
# Check the correctness of macros/ crate
|
|
|
|
checkmacros:
|
2020-06-11 21:00:32 +02:00
|
|
|
name: checkmacros
|
2020-08-24 13:51:21 +02:00
|
|
|
runs-on: ubuntu-20.04
|
2020-05-31 12:12:29 +02:00
|
|
|
strategy:
|
|
|
|
matrix:
|
|
|
|
target:
|
|
|
|
- x86_64-unknown-linux-gnu
|
|
|
|
toolchain:
|
|
|
|
- stable
|
|
|
|
steps:
|
|
|
|
- name: Checkout
|
|
|
|
uses: actions/checkout@v2
|
2020-06-16 08:56:51 +02:00
|
|
|
|
|
|
|
- name: Cache cargo dependencies
|
|
|
|
uses: actions/cache@v2
|
|
|
|
with:
|
|
|
|
path: |
|
|
|
|
- ~/.cargo/bin/
|
|
|
|
- ~/.cargo/registry/index/
|
|
|
|
- ~/.cargo/registry/cache/
|
|
|
|
- ~/.cargo/git/db/
|
|
|
|
key: ${{ runner.OS }}-cargo-${{ hashFiles('**/Cargo.lock') }}
|
|
|
|
restore-keys: |
|
|
|
|
${{ runner.OS }}-cargo-${{ hashFiles('**/Cargo.lock') }}
|
|
|
|
${{ runner.OS }}-cargo-
|
|
|
|
|
|
|
|
- name: Cache build output dependencies
|
|
|
|
uses: actions/cache@v2
|
|
|
|
with:
|
|
|
|
path: target
|
|
|
|
key: ${{ runner.OS }}-build-${{ hashFiles('**/Cargo.lock') }}
|
|
|
|
restore-keys: |
|
|
|
|
${{ runner.OS }}-build-${{ hashFiles('**/Cargo.lock') }}
|
|
|
|
${{ runner.OS }}-build-
|
|
|
|
|
2020-05-31 12:12:29 +02:00
|
|
|
- name: Install Rust ${{ matrix.toolchain }} with target (${{ matrix.target }})
|
|
|
|
uses: actions-rs/toolchain@v1
|
|
|
|
with:
|
|
|
|
toolchain: ${{ matrix.toolchain }}
|
|
|
|
target: ${{ matrix.target }}
|
|
|
|
override: true
|
2020-06-10 17:01:07 +02:00
|
|
|
|
2020-05-31 12:12:29 +02:00
|
|
|
- name: cargo check
|
|
|
|
uses: actions-rs/cargo@v1
|
|
|
|
with:
|
|
|
|
use-cross: false
|
|
|
|
command: check
|
|
|
|
args: --manifest-path macros/Cargo.toml --target=${{ matrix.target }}
|
|
|
|
|
|
|
|
# Run test suite for thumbv7m
|
|
|
|
testv7:
|
2020-06-11 21:00:32 +02:00
|
|
|
name: testv7
|
2020-08-24 13:51:21 +02:00
|
|
|
runs-on: ubuntu-20.04
|
2020-05-31 12:12:29 +02:00
|
|
|
steps:
|
|
|
|
- name: Checkout
|
|
|
|
uses: actions/checkout@v2
|
2020-06-16 08:56:51 +02:00
|
|
|
|
|
|
|
- name: Cache cargo dependencies
|
|
|
|
uses: actions/cache@v2
|
|
|
|
with:
|
|
|
|
path: |
|
|
|
|
- ~/.cargo/bin/
|
|
|
|
- ~/.cargo/registry/index/
|
|
|
|
- ~/.cargo/registry/cache/
|
|
|
|
- ~/.cargo/git/db/
|
|
|
|
key: ${{ runner.OS }}-cargo-${{ hashFiles('**/Cargo.lock') }}
|
|
|
|
restore-keys: |
|
|
|
|
${{ runner.OS }}-cargo-
|
|
|
|
|
|
|
|
- name: Cache build output dependencies
|
|
|
|
uses: actions/cache@v2
|
|
|
|
with:
|
|
|
|
path: target
|
|
|
|
key: ${{ runner.OS }}-build-${{ hashFiles('**/Cargo.lock') }}
|
|
|
|
restore-keys: |
|
|
|
|
${{ runner.OS }}-build-
|
|
|
|
|
2020-05-31 12:12:29 +02:00
|
|
|
- name: Install Rust
|
|
|
|
uses: actions-rs/toolchain@v1
|
|
|
|
with:
|
2020-09-25 15:58:22 +02:00
|
|
|
toolchain: stable
|
2020-05-31 12:12:29 +02:00
|
|
|
target: thumbv7m-none-eabi
|
|
|
|
override: true
|
2020-06-10 17:01:07 +02:00
|
|
|
|
2020-05-31 12:12:29 +02:00
|
|
|
- uses: actions-rs/cargo@v1
|
|
|
|
with:
|
|
|
|
use-cross: false
|
|
|
|
command: test
|
|
|
|
args: --test single --features __v7
|
|
|
|
|
|
|
|
# Run test suite for thumbv6m
|
|
|
|
testv6:
|
2020-06-11 21:00:32 +02:00
|
|
|
name: testv6
|
2020-08-24 13:51:21 +02:00
|
|
|
runs-on: ubuntu-20.04
|
2020-05-31 12:12:29 +02:00
|
|
|
steps:
|
|
|
|
- name: Checkout
|
|
|
|
uses: actions/checkout@v2
|
2020-06-16 08:56:51 +02:00
|
|
|
|
|
|
|
- name: Cache cargo dependencies
|
|
|
|
uses: actions/cache@v2
|
|
|
|
with:
|
|
|
|
path: |
|
|
|
|
- ~/.cargo/bin/
|
|
|
|
- ~/.cargo/registry/index/
|
|
|
|
- ~/.cargo/registry/cache/
|
|
|
|
- ~/.cargo/git/db/
|
|
|
|
key: ${{ runner.OS }}-cargo-${{ hashFiles('**/Cargo.lock') }}
|
|
|
|
restore-keys: |
|
|
|
|
${{ runner.OS }}-cargo-
|
|
|
|
|
|
|
|
- name: Cache build output dependencies
|
|
|
|
uses: actions/cache@v2
|
|
|
|
with:
|
|
|
|
path: target
|
|
|
|
key: ${{ runner.OS }}-build-${{ hashFiles('**/Cargo.lock') }}
|
|
|
|
restore-keys: |
|
|
|
|
${{ runner.OS }}-build-
|
|
|
|
|
2020-05-31 12:12:29 +02:00
|
|
|
- name: Install Rust
|
|
|
|
uses: actions-rs/toolchain@v1
|
|
|
|
with:
|
2020-09-25 15:58:22 +02:00
|
|
|
toolchain: stable
|
2020-05-31 12:12:29 +02:00
|
|
|
target: thumbv6m-none-eabi
|
|
|
|
override: true
|
2020-06-10 17:01:07 +02:00
|
|
|
|
2020-05-31 12:12:29 +02:00
|
|
|
- uses: actions-rs/cargo@v1
|
|
|
|
with:
|
|
|
|
use-cross: false
|
|
|
|
command: test
|
|
|
|
args: --test single
|
|
|
|
|
2020-06-15 21:42:51 +02:00
|
|
|
# Build documentation, check links
|
|
|
|
docs:
|
|
|
|
name: docs
|
2020-08-24 13:51:21 +02:00
|
|
|
runs-on: ubuntu-20.04
|
2020-06-15 21:42:51 +02:00
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: Checkout
|
|
|
|
uses: actions/checkout@v2
|
|
|
|
|
2020-06-16 08:56:51 +02:00
|
|
|
- name: Cache cargo dependencies
|
|
|
|
uses: actions/cache@v2
|
|
|
|
with:
|
|
|
|
path: |
|
|
|
|
- ~/.cargo/bin/
|
|
|
|
- ~/.cargo/registry/index/
|
|
|
|
- ~/.cargo/registry/cache/
|
|
|
|
- ~/.cargo/git/db/
|
|
|
|
key: ${{ runner.OS }}-cargo-${{ hashFiles('**/Cargo.lock') }}
|
|
|
|
restore-keys: |
|
|
|
|
${{ runner.OS }}-cargo-
|
|
|
|
|
|
|
|
- name: Cache build output dependencies
|
|
|
|
uses: actions/cache@v2
|
|
|
|
with:
|
|
|
|
path: target
|
|
|
|
key: ${{ runner.OS }}-build-${{ hashFiles('**/Cargo.lock') }}
|
|
|
|
restore-keys: |
|
|
|
|
${{ runner.OS }}-build-
|
|
|
|
|
|
|
|
- name: Cache pip installed linkchecker
|
|
|
|
uses: actions/cache@v2
|
|
|
|
with:
|
|
|
|
path: ~/.cache/pip
|
|
|
|
key: ${{ runner.os }}-pip
|
|
|
|
restore-keys: |
|
|
|
|
${{ runner.os }}-pip-
|
|
|
|
|
2020-06-15 21:42:51 +02:00
|
|
|
- name: Set up Python 3.x
|
|
|
|
uses: actions/setup-python@v2
|
|
|
|
with:
|
|
|
|
# Semantic version range syntax or exact version of a Python version
|
|
|
|
python-version: '3.x'
|
|
|
|
# Optional - x64 or x86 architecture, defaults to x64
|
|
|
|
architecture: 'x64'
|
|
|
|
|
|
|
|
# You can test your matrix by printing the current Python version
|
|
|
|
- name: Display Python version
|
|
|
|
run: python -c "import sys; print(sys.version)"
|
|
|
|
|
|
|
|
- name: Install dependencies
|
|
|
|
run: pip install git+https://github.com/linkchecker/linkchecker.git
|
|
|
|
|
|
|
|
- name: Remove cargo-config
|
|
|
|
run: rm -f .cargo/config
|
|
|
|
|
|
|
|
- name: Build docs
|
|
|
|
run: cargo doc
|
|
|
|
|
|
|
|
- name: Check links
|
|
|
|
run: |
|
|
|
|
td=$(mktemp -d)
|
|
|
|
cp -r target/doc $td/api
|
|
|
|
linkchecker $td/api/rtic/
|
|
|
|
linkchecker $td/api/cortex_m_rtic_macros/
|
|
|
|
|
|
|
|
# Build the books
|
|
|
|
mdbook:
|
|
|
|
name: mdbook
|
2020-08-24 13:51:21 +02:00
|
|
|
runs-on: ubuntu-20.04
|
2020-06-15 21:42:51 +02:00
|
|
|
steps:
|
|
|
|
- name: Checkout
|
|
|
|
uses: actions/checkout@v2
|
|
|
|
- name: Set up Python 3.x
|
|
|
|
uses: actions/setup-python@v2
|
|
|
|
with:
|
|
|
|
# Semantic version range syntax or exact version of a Python version
|
|
|
|
python-version: '3.x'
|
|
|
|
# Optional - x64 or x86 architecture, defaults to x64
|
|
|
|
architecture: 'x64'
|
|
|
|
|
|
|
|
# You can test your matrix by printing the current Python version
|
|
|
|
- name: Display Python version
|
|
|
|
run: python -c "import sys; print(sys.version)"
|
|
|
|
|
|
|
|
- name: Install dependencies
|
|
|
|
run: pip install git+https://github.com/linkchecker/linkchecker.git
|
|
|
|
|
|
|
|
- name: mdBook Action
|
|
|
|
uses: peaceiris/actions-mdbook@v1.1.11
|
|
|
|
with:
|
|
|
|
mdbook-version: '0.3.1'
|
|
|
|
|
|
|
|
- name: Build book in English
|
|
|
|
run: cd book/en && mdbook build
|
|
|
|
|
|
|
|
- name: Build book in Russian
|
|
|
|
run: cd book/ru && mdbook build
|
|
|
|
|
|
|
|
- name: Check links
|
|
|
|
run: |
|
|
|
|
td=$(mktemp -d)
|
|
|
|
mkdir $td/book
|
|
|
|
cp -r book/en/book $td/book/en
|
|
|
|
cp -r book/ru/book $td/book/ru
|
|
|
|
cp LICENSE-* $td/book/en
|
|
|
|
cp LICENSE-* $td/book/ru
|
|
|
|
|
|
|
|
linkchecker $td/book/en/
|
|
|
|
linkchecker $td/book/ru/
|
|
|
|
|
|
|
|
# Only runs when pushing to master branch
|
|
|
|
deploy:
|
|
|
|
name: deploy
|
2020-08-24 13:51:21 +02:00
|
|
|
runs-on: ubuntu-20.04
|
2020-06-15 21:42:51 +02:00
|
|
|
needs:
|
|
|
|
- style
|
|
|
|
- check
|
|
|
|
- checkexamples
|
|
|
|
- checkmacros
|
|
|
|
- testv7
|
|
|
|
- testv6
|
|
|
|
- docs
|
|
|
|
- mdbook
|
|
|
|
# Only run this when pushing to master branch
|
|
|
|
if: github.ref == 'refs/heads/master'
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
|
|
|
|
|
|
|
- name: Set up Python 3.x
|
|
|
|
uses: actions/setup-python@v2
|
|
|
|
with:
|
|
|
|
# Semantic version range syntax or exact version of a Python version
|
|
|
|
python-version: '3.x'
|
|
|
|
# Optional - x64 or x86 architecture, defaults to x64
|
|
|
|
architecture: 'x64'
|
|
|
|
|
|
|
|
# You can test your matrix by printing the current Python version
|
|
|
|
- name: Display Python version
|
|
|
|
run: python -c "import sys; print(sys.version)"
|
|
|
|
|
|
|
|
- name: mdBook Action
|
|
|
|
uses: peaceiris/actions-mdbook@v1.1.11
|
|
|
|
with:
|
|
|
|
mdbook-version: '0.3.1'
|
|
|
|
# mdbook-version: 'latest'
|
|
|
|
|
|
|
|
- name: Remove cargo-config
|
|
|
|
run: rm -f .cargo/config
|
|
|
|
|
|
|
|
- name: Build docs
|
|
|
|
run: cargo doc
|
|
|
|
|
|
|
|
- name: Build books
|
|
|
|
run: |
|
|
|
|
langs=( en ru )
|
2020-10-05 11:19:43 +02:00
|
|
|
devver=( dev )
|
2020-10-05 12:44:57 +02:00
|
|
|
# The latest stable must be the first element in the array
|
2020-10-05 09:50:30 +02:00
|
|
|
vers=( 0.5.x 0.4.x )
|
2020-06-15 21:42:51 +02:00
|
|
|
|
2020-10-05 12:44:57 +02:00
|
|
|
# All releases start with "v"
|
|
|
|
# followed by MAJOR.MINOR.PATCH, see semver.org
|
|
|
|
# Retain MAJOR.MINOR as $stable
|
|
|
|
stable=${vers%.*}
|
|
|
|
|
2020-10-05 12:07:43 +02:00
|
|
|
echo "Stable version: $stable"
|
|
|
|
|
2020-06-15 21:42:51 +02:00
|
|
|
# Create directories
|
|
|
|
td=$(mktemp -d)
|
2020-10-05 09:50:30 +02:00
|
|
|
mkdir -p $td/$devver/book/
|
|
|
|
cp -r target/doc $td/$devver/api
|
2020-06-15 21:42:51 +02:00
|
|
|
|
2020-10-05 09:50:30 +02:00
|
|
|
# Redirect the main site to the stable release
|
|
|
|
sed "s|URL|$stable|g" redirect.html > $td/index.html
|
|
|
|
|
|
|
|
# Create the redirects for dev-version
|
|
|
|
sed 's|URL|rtic/index.html|g' redirect.html > $td/$devver/api/index.html
|
|
|
|
sed 's|URL|book/en|g' redirect.html > $td/$devver/index.html
|
2020-06-15 21:42:51 +02:00
|
|
|
|
|
|
|
# Build books
|
|
|
|
for lang in ${langs[@]}; do
|
|
|
|
( cd book/$lang && mdbook build )
|
2020-10-05 09:50:30 +02:00
|
|
|
cp -r book/$lang/book $td/$devver/book/$lang
|
|
|
|
cp LICENSE-* $td/$devver/book/$lang/
|
2020-06-15 21:42:51 +02:00
|
|
|
done
|
|
|
|
|
2020-10-05 09:50:30 +02:00
|
|
|
# Build older versions, including stable
|
2020-06-15 21:42:51 +02:00
|
|
|
root=$(pwd)
|
|
|
|
for ver in ${vers[@]}; do
|
|
|
|
prefix=${ver%.*}
|
|
|
|
|
|
|
|
mkdir -p $td/$prefix/book
|
|
|
|
src=$(mktemp -d)
|
|
|
|
curl -L https://github.com/rtic-rs/cortex-m-rtic/archive/v${ver}.tar.gz | tar xz --strip-components 1 -C $src
|
|
|
|
|
|
|
|
pushd $src
|
|
|
|
rm -f .cargo/config
|
|
|
|
cargo doc || cargo doc --features timer-queue
|
|
|
|
cp -r target/doc $td/$prefix/api
|
|
|
|
sed 's|URL|rtic/index.html|g' $root/redirect.html > $td/$prefix/api/index.html
|
|
|
|
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
|
|
|
|
sed 's|URL|book/en|g' $root/redirect.html > $td/$prefix/index.html
|
|
|
|
popd
|
|
|
|
|
|
|
|
rm -rf $src
|
|
|
|
done
|
|
|
|
|
2020-10-05 12:07:43 +02:00
|
|
|
# Copy the stable book to the stable alias
|
|
|
|
cp -r $td/$stable $td/stable
|
2020-10-05 09:50:30 +02:00
|
|
|
|
2020-06-15 21:42:51 +02:00
|
|
|
# Forward CNAME file
|
|
|
|
cp CNAME $td/
|
|
|
|
mv $td/ bookstodeploy
|
|
|
|
|
|
|
|
- name: Deploy to GH-pages
|
|
|
|
uses: peaceiris/actions-gh-pages@v3
|
|
|
|
with:
|
|
|
|
github_token: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
publish_dir: ./bookstodeploy
|
|
|
|
|
2020-06-11 21:00:32 +02:00
|
|
|
# Refs: https://github.com/rust-lang/crater/blob/9ab6f9697c901c4a44025cf0a39b73ad5b37d198/.github/workflows/bors.yml#L125-L149
|
|
|
|
#
|
|
|
|
# ALL THE PREVIOUS JOBS NEEDS TO BE ADDED TO THE `needs` SECTION OF THIS JOB!
|
|
|
|
|
|
|
|
ci-success:
|
|
|
|
name: ci
|
|
|
|
if: github.event_name == 'push' && success()
|
|
|
|
needs:
|
|
|
|
- style
|
|
|
|
- check
|
|
|
|
- checkexamples
|
|
|
|
- checkmacros
|
|
|
|
- testv7
|
|
|
|
- testv6
|
2020-06-15 21:42:51 +02:00
|
|
|
- docs
|
|
|
|
- mdbook
|
2020-08-24 13:51:21 +02:00
|
|
|
runs-on: ubuntu-20.04
|
2020-06-11 21:00:32 +02:00
|
|
|
steps:
|
|
|
|
- name: Mark the job as a success
|
|
|
|
run: exit 0
|
|
|
|
ci-failure:
|
|
|
|
name: ci
|
|
|
|
if: github.event_name == 'push' && !success()
|
|
|
|
needs:
|
|
|
|
- style
|
|
|
|
- check
|
|
|
|
- checkexamples
|
|
|
|
- checkmacros
|
|
|
|
- testv7
|
|
|
|
- testv6
|
2020-06-15 21:42:51 +02:00
|
|
|
- docs
|
|
|
|
- mdbook
|
2020-08-24 13:51:21 +02:00
|
|
|
runs-on: ubuntu-20.04
|
2020-06-11 21:00:32 +02:00
|
|
|
steps:
|
|
|
|
- name: Mark the job as a failure
|
|
|
|
run: exit 1
|