Skip to content

Commit

Permalink
Update build.yml: install dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
larc authored Oct 9, 2020
1 parent 4b901ae commit 3bb4f9f
Showing 1 changed file with 15 additions and 3 deletions.
18 changes: 15 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: build
name: Build

on: [push]

Expand All @@ -12,11 +12,23 @@ jobs:
# well on Windows or Mac. You can convert this to a matrix build if you need
# cross-platform coverage.
# See: https://docs.github.com/en/actions/configuring-and-managing-workflows/configuring-a-workflow#configuring-a-build-matrix
runs-on: ubuntu-latest
runs-on: ubuntu-20.04

steps:
- uses: actions/checkout@v2


- name: Install Dependencies
run: sudo apt install \
libarmadillo-dev \
libeigen3-dev \
libcgal-dev \
libsuitesparse-dev \
libopenblas-dev \
libglew-dev \
libglfw3-dev \
libglm-dev \
cimg-dev

- name: Create Build Environment
# Some projects don't allow in-source building, so create a separate build directory
# We'll use this as our working directory for all subsequent commands
Expand Down

0 comments on commit 3bb4f9f

Please sign in to comment.