mirror of
https://github.com/italicsjenga/agb.git
synced 2024-12-24 08:41:34 +11:00
Merge pull request #179 from gwilymk/build-book-on-every-build
Build book on every build
This commit is contained in:
commit
db9f7b5c22
4
.github/workflows/build-and-test.yml
vendored
4
.github/workflows/build-and-test.yml
vendored
|
@ -33,5 +33,9 @@ jobs:
|
||||||
- name: Install gbafix
|
- name: Install gbafix
|
||||||
run: cargo install gbafix
|
run: cargo install gbafix
|
||||||
- uses: extractions/setup-just@v1
|
- uses: extractions/setup-just@v1
|
||||||
|
- name: Setup mdBook
|
||||||
|
uses: peaceiris/actions-mdbook@v1
|
||||||
|
with:
|
||||||
|
mdbook-version: '0.4.13'
|
||||||
- name: Build and test all crates
|
- name: Build and test all crates
|
||||||
run: just ci
|
run: just ci
|
38
.github/workflows/build-book.yml
vendored
38
.github/workflows/build-book.yml
vendored
|
@ -1,38 +0,0 @@
|
||||||
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@v3
|
|
||||||
- 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
|
|
6
.github/workflows/publish-agb.yml
vendored
6
.github/workflows/publish-agb.yml
vendored
|
@ -38,8 +38,10 @@ jobs:
|
||||||
tag: ${{ github.ref }}
|
tag: ${{ github.ref }}
|
||||||
overwrite: true
|
overwrite: true
|
||||||
|
|
||||||
- name: Install mdbook
|
- name: Setup mdBook
|
||||||
run: cargo install mdbook
|
uses: peaceiris/actions-mdbook@v1
|
||||||
|
with:
|
||||||
|
mdbook-version: '0.4.13'
|
||||||
- name: Build the book
|
- name: Build the book
|
||||||
run: just build-book
|
run: just build-book
|
||||||
- name: Deploy the book
|
- name: Deploy the book
|
||||||
|
|
1
justfile
1
justfile
|
@ -27,6 +27,7 @@ ci: && build-roms
|
||||||
just _all-crates _test-debug
|
just _all-crates _test-debug
|
||||||
just _all-crates _test-release
|
just _all-crates _test-release
|
||||||
just _all-crates _clippy
|
just _all-crates _clippy
|
||||||
|
just build-book
|
||||||
|
|
||||||
build-roms:
|
build-roms:
|
||||||
just _build-rom "examples/the-purple-night" "PURPLENIGHT"
|
just _build-rom "examples/the-purple-night" "PURPLENIGHT"
|
||||||
|
|
Loading…
Reference in a new issue