Skip to content

Update README.md

Update README.md #182

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 texlive --params="'/scheme:full'" --execution-timeout=10000
- name: Build
run: |
Import-Module "$env:ChocolateyInstall\helpers\chocolateyProfile.psm1"
refreshenv
mkdir build
cd build
cmake -D USE_LATEX=ON ..
cmake --build .
cd ..
- uses: actions/upload-artifact@v4
with:
name: windows-artifacts
path: build/bin/