mirror of
https://github.com/phil-opp/blog_os.git
synced 2025-12-16 14:27:49 +00:00
97 lines
2.3 KiB
YAML
97 lines
2.3 KiB
YAML
name: Build Code
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- '*'
|
|
- '!staging.tmp'
|
|
tags:
|
|
- '*'
|
|
schedule:
|
|
- cron: '40 3 * * *' # every day at 3:40
|
|
pull_request:
|
|
|
|
jobs:
|
|
test:
|
|
name: "Test"
|
|
|
|
strategy:
|
|
matrix:
|
|
platform: [
|
|
ubuntu-latest,
|
|
macos-latest,
|
|
windows-latest
|
|
]
|
|
|
|
runs-on: ${{ matrix.platform }}
|
|
timeout-minutes: 15
|
|
|
|
steps:
|
|
- name: "Checkout Repository"
|
|
uses: actions/checkout@v1
|
|
|
|
- name: Install Rustup
|
|
run: |
|
|
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y --default-toolchain nightly
|
|
echo ::add-path::$HOME/.cargo/bin
|
|
if: runner.os == 'macOS'
|
|
|
|
- name: "Print Rust Version"
|
|
run: |
|
|
rustc -Vv
|
|
cargo -Vv
|
|
|
|
- name: "Install Rustup Components"
|
|
run: rustup component add rust-src llvm-tools-preview
|
|
- name: "Install cargo-xbuild"
|
|
run: cargo install cargo-xbuild --debug
|
|
- name: "Install bootimage"
|
|
run: cargo install bootimage --debug
|
|
|
|
- name: "Run cargo xbuild"
|
|
run: cargo xbuild
|
|
- name: "Create Bootimage"
|
|
run: cargo bootimage
|
|
|
|
# install QEMU
|
|
- name: Install QEMU (Linux)
|
|
run: sudo apt update && sudo apt install qemu-system-x86
|
|
if: runner.os == 'Linux'
|
|
- name: Install QEMU (macOS)
|
|
run: brew install qemu
|
|
if: runner.os == 'macOS'
|
|
env:
|
|
HOMEBREW_NO_AUTO_UPDATE: 1
|
|
HOMEBREW_NO_BOTTLE_SOURCE_FALLBACK: 1
|
|
HOMEBREW_NO_INSTALL_CLEANUP: 1
|
|
- name: Install Scoop (Windows)
|
|
run: |
|
|
Invoke-Expression (New-Object System.Net.WebClient).DownloadString('https://get.scoop.sh')
|
|
echo ::add-path::$HOME\scoop\shims
|
|
if: runner.os == 'Windows'
|
|
shell: pwsh
|
|
- name: Install QEMU (Windows)
|
|
run: scoop install qemu
|
|
if: runner.os == 'Windows'
|
|
shell: pwsh
|
|
- name: "Print QEMU Version"
|
|
run: qemu-system-x86_64 --version
|
|
|
|
- name: "Run cargo xtest"
|
|
run: cargo xtest
|
|
|
|
check_formatting:
|
|
name: "Check Formatting"
|
|
runs-on: ubuntu-latest
|
|
timeout-minutes: 2
|
|
steps:
|
|
- uses: actions/checkout@v1
|
|
- name: "Use the latest Rust nightly with rustfmt"
|
|
uses: actions-rs/toolchain@v1
|
|
with:
|
|
toolchain: nightly
|
|
profile: minimal
|
|
components: rustfmt
|
|
override: true
|
|
- run: cargo fmt -- --check
|