use microlog instead PrintDebug #18
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: Test build | |
on: | |
push: | |
branches: [ | |
"stable", | |
"dev-stable" | |
] | |
pull_request: | |
branches: [ | |
"stable", | |
"dev-stable" | |
] | |
env: | |
BUILD_TYPE: Release | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4.2.0 | |
- name: Install Toolchain | |
uses: Egor00f/install-kolibrios-toolchain-action@main | |
- name: Install depends | |
run: sudo apt install fasm | |
- name: KolibriOS repo | |
run: | | |
${{github.workspace}}/../ | |
git clone https://git.kolibrios.org/KolibriOS/kolibrios.git | |
- name: Configure CMake | |
run: | | |
cd ${{github.workspace}} | |
cmake -B ${{github.workspace}}/build -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}} -DCMAKE_TOOLCHAIN_FILE=${{github.workspace}}/cmake/toolchain.cmake | |
- name: Build | |
run: cmake --build ${{github.workspace}}/build --target all --config ${{env.BUILD_TYPE}} |