fix typo in tests #10
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: PKG | |
on: | |
push: | |
branches: | |
- master | |
paths-ignore: | |
- "*.md" | |
- "*.gitignore" | |
- "*.txt" | |
- "!CMakeLists.txt" | |
- "*.png" | |
- "*.mtx" | |
- "*.mm" | |
workflow_dispatch: | |
jobs: | |
packager: | |
runs-on: ubuntu-24.04 | |
strategy: | |
fail-fast: false | |
steps: | |
- name: Install toolchain | |
run: | | |
sudo apt update | |
sudo apt install gcc-13 g++-13 | |
- name: Clone repository | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Build | |
run: | | |
./build.sh \ | |
-t Release \ | |
-o "-DCMAKE_CXX_COMPILER=/usr/bin/g++-13" \ | |
-p | |
- name: Upload binary artifact | |
uses: actions/upload-artifact@v3 | |
with: | |
name: release-ubuntu | |
path: build/*Linux.zip | |
- name: Upload source artifact | |
uses: actions/upload-artifact@v3 | |
with: | |
name: release-source | |
path: build/*Source.zip |