All - Move the default font and kernel graphics to a crate instead of… #153
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Rust | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
schedule: | |
- cron: '45 10 * * 2' # 18:45 UCY+8 on Tuesday | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: ilammy/setup-nasm@v1 | |
- uses: actions/checkout@v2 | |
- uses: actions-rs/toolchain@v1 | |
with: | |
toolchain: nightly | |
- name: fetch | |
run: | | |
mkdir -p _archives | |
(cd _archives && wget -c http://tpg.ucc.asn.au/tifflin_build_tools.tar.bz2) | |
tar -xf _archives/tifflin_build_tools.tar.bz2 | |
- name: init | |
run: | | |
make UPDATE | |
make EXTERNALS | |
- name: build | |
run: | | |
make all USE_ACPICA=0 |