Skip to content

Update badge link in README.md #168

Update badge link in README.md

Update badge link in README.md #168

Workflow file for this run

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/