Skip to content

merge from dev branch #82

merge from dev branch

merge from dev branch #82

Workflow file for this run

name: TBKOSTER Compilation
on: [push]
jobs:
Compilation-Actions:
runs-on: ubuntu-latest
steps:
- name: Check out repository code
uses: actions/checkout@v4
- run: echo "The ${{ github.repository }} repository has been cloned to the runner."
- run: echo "The workflow is now ready to test your code on the runner."
- name: Upgrade packages
run: sudo apt-get update && sudo apt-get install -y gettext doxygen texlive tex4ht texlive-latex-extra biber ghostscript poppler-utils
- run: mkdir build
- name: Prepare environment
run: cmake -B build .
- name: Make binaries
run: |
cd build
make
- name: 'Generate artifacts'
uses: actions/upload-artifact@v2
with:
name: Binary for ubuntu
path: |
build/build/bin/*.x
retention-days: 5
- run: echo "🍏 This job's status is ${{ job.status }}."