ci(github-actions): simplify action files #181
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
on: | |
push: | |
branches: | |
- main | |
workflow_dispatch: | |
env: | |
PYTHONIOENCODING: utf-8 | |
PYTHONLEGACYWINDOWSSTDIO: utf-8 | |
jobs: | |
check-windows-x86_64: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [windows-2019] | |
steps: | |
- name: Checkout git repo | |
uses: actions/checkout@v4 | |
with: | |
path: main | |
submodules: 'true' | |
- name: Preparations | |
working-directory: main | |
run: | | |
git submodule init | |
git submodule update | |
mkdir compiler/cmake-build-release | |
- name: Configuring CMake | |
working-directory: main/compiler/cmake-build-release | |
run: | | |
cmake -G Ninja -DCMAKE_BUILD_TYPE=Release ../ | |
- name: Build | |
working-directory: main/compiler/cmake-build-release | |
run: | | |
ninja all | |
- name: Test | |
working-directory: main/compiler/cmake-build-release | |
run: | | |
ninja test | |
check-ubuntu-x86_64: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [ubuntu-20.04, ubuntu-22.04] | |
steps: | |
- name: Checkout git repo | |
uses: actions/checkout@v4 | |
with: | |
path: main | |
submodules: 'true' | |
- name: Preparations | |
working-directory: main | |
run: | | |
git submodule init | |
git submodule update | |
sudo apt update | |
sudo apt install -y cmake ninja-build g++ | |
mkdir -p compiler/cmake-build-release | |
- name: Configuring CMake | |
working-directory: main/compiler/cmake-build-release | |
run: | | |
cmake -G Ninja -DCMAKE_BUILD_TYPE=Release ../ | |
- name: Build | |
working-directory: main/compiler/cmake-build-release | |
run: | | |
ninja all | |
- name: Test | |
working-directory: main/compiler/cmake-build-release | |
run: | | |
ninja test | |
check-macos-x86_64: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [macos-11] | |
steps: | |
- name: Checkout git repo | |
uses: actions/checkout@v4 | |
with: | |
path: main | |
submodules: 'true' | |
- name: Preparations | |
working-directory: main | |
run: | | |
git submodule init | |
git submodule update | |
brew install cmake ninja gcc p7zip | |
mkdir -p compiler/cmake-build-release | |
- name: Configuring CMake | |
working-directory: main/compiler/cmake-build-release | |
run: | | |
cmake -G Ninja -DCMAKE_BUILD_TYPE=Release ../ | |
- name: Build | |
working-directory: main/compiler/cmake-build-release | |
run: | | |
ninja all | |
- name: Test | |
working-directory: main/compiler/cmake-build-release | |
run: | | |
ninja test |