Skip to content

Recent files should contain example #10

Recent files should contain example

Recent files should contain example #10

Workflow file for this run

name: Ubuntu
on:
push:
branches:
- github-action-debug
jobs:
qt:
name: Ubuntu Build
if: false
runs-on: ubuntu-latest
strategy:
matrix:
qt-version: [6.2]
steps:
- name: Qt Requirements
run: |
sudo apt update
brew update
- name: Dependencies
run: |
sudo apt-get -y install build-essential mercurial gfortran-9 gfortran-10 flex bison r-base cmake libarchive-dev zlibc libzstd-dev mesa-utils libglu1-mesa-dev freeglut3-dev mesa-common-dev libglew-dev libglfw3-dev libglm-dev libao-dev libmpg123-dev
brew install qt jsoncpp boost libarchive
- uses: actions/checkout@v2
- name: Configure
run: |
git submodule update --init
cmake -S . -B build -D GITHUB_PAT=${{ secrets.GPAT_FOR_JASP }} -DINSTALL_JASP_REQUIRED_LIBRARIES=ON -DLINUX_LOCAL_BUILD=ON
- name: Build
run: cmake --build build