Update badge link in README.md #168
Workflow file for this run
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: Build application | |
on: [push, pull_request] | |
jobs: | |
ubuntu-build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
submodules: true | |
- name: Setup environment | |
run: | | |
sudo add-apt-repository ppa:ubuntu-toolchain-r/test | |
sudo apt-get update | |
sudo apt-get install texlive* | |
- name: Build | |
run: | | |
mkdir build | |
cd build | |
cmake -D USE_LATEX=ON .. | |
cmake --build . | |
cd .. | |
shell: bash | |
- uses: actions/upload-artifact@v4 | |
with: | |
name: ubuntu-artifacts | |
path: build/bin/ | |
windows-build: | |
runs-on: windows-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
submodules: true | |
- name: Setup environment | |
run: | | |
choco install miktex --no-progress | |
echo "C:\Program Files\MiKTeX\miktex\bin\x64" | Out-File -FilePath $env:GITHUB_PATH -Encoding utf8 | |
- name: Build | |
run: | | |
mkdir build | |
cd build | |
cmake -D USE_LATEX=ON .. | |
cmake --build . | |
cd .. | |
shell: bash | |
- uses: actions/upload-artifact@v4 | |
with: | |
name: windows-artifacts | |
path: build/bin/ |