mirror of
https://github.com/italicsjenga/agb.git
synced 2024-12-24 00:31:34 +11:00
Move building the book to its own workflow since it takes forever to install mdbook
This commit is contained in:
parent
43f806f116
commit
e0b43acf42
38
.github/workflows/build-book.yml
vendored
Normal file
38
.github/workflows/build-book.yml
vendored
Normal file
|
@ -0,0 +1,38 @@
|
||||||
|
name: Build book
|
||||||
|
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
branches: [ master ]
|
||||||
|
paths:
|
||||||
|
'book/**'
|
||||||
|
pull_request:
|
||||||
|
branches: [ master ]
|
||||||
|
paths:
|
||||||
|
'book/**'
|
||||||
|
|
||||||
|
env:
|
||||||
|
CARGO_TERM_COLOR: always
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
build:
|
||||||
|
runs-on: ubuntu-20.04
|
||||||
|
steps:
|
||||||
|
- name: Set CARGO_TARGET_DIR
|
||||||
|
run: echo "CARGO_TARGET_DIR=$HOME/target" >> $GITHUB_ENV
|
||||||
|
- name: Install build tools
|
||||||
|
run: sudo apt-get update && sudo apt-get install build-essential binutils-arm-none-eabi libelf-dev zip -y
|
||||||
|
- uses: actions/checkout@v2
|
||||||
|
- name: Cache
|
||||||
|
uses: actions/cache@v2.1.7
|
||||||
|
with:
|
||||||
|
path: |
|
||||||
|
~/.cargo/registry
|
||||||
|
~/.cargo/git
|
||||||
|
~/target
|
||||||
|
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
|
||||||
|
|
||||||
|
- name: Install mdbook
|
||||||
|
run: cargo install mdbook
|
||||||
|
- name: Build the book
|
||||||
|
run: mdbook build
|
||||||
|
working-directory: book
|
5
.github/workflows/rust.yml
vendored
5
.github/workflows/rust.yml
vendored
|
@ -31,12 +31,7 @@ jobs:
|
||||||
run: cargo install --path mgba-test-runner --verbose
|
run: cargo install --path mgba-test-runner --verbose
|
||||||
- name: Install gbafix
|
- name: Install gbafix
|
||||||
run: cargo install gbafix
|
run: cargo install gbafix
|
||||||
- name: Install mdbook
|
|
||||||
run: cargo install mdbook
|
|
||||||
- name: Build and test all crates
|
- name: Build and test all crates
|
||||||
run: bash .github/scripts/run-branch-build.sh
|
run: bash .github/scripts/run-branch-build.sh
|
||||||
- name: Build example projects
|
- name: Build example projects
|
||||||
run: bash .github/scripts/build-example-gba-files.sh
|
run: bash .github/scripts/build-example-gba-files.sh
|
||||||
- name: Build the book
|
|
||||||
run: mdbook build
|
|
||||||
working-directory: book
|
|
Loading…
Reference in a new issue