Skip to content

Commit

Permalink
Fixes Github CI (#615)
Browse files Browse the repository at this point in the history
  • Loading branch information
xelatihy committed Sep 8, 2019
1 parent 9dbb511 commit 597d0b4
Showing 1 changed file with 13 additions and 8 deletions.
21 changes: 13 additions & 8 deletions .github/workflows/github.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,16 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: update apt
run: apt-get update --yes
- name: install cmake
run: apt-get install --yes cmake
- name: cmake
run: cmkae .
- name: make
run: make
- name: install dependencies
run: |
sudo apt-get update --yes
sudo apt-get install --yes cmake
- name: configure
run: |
mkdir build
cd build
cmake .. -DYOCTO_OPENGL=OFF -DYOCTO_EMBREE=OFF
- name: build
run: |
cd build
cmake --build .

0 comments on commit 597d0b4

Please sign in to comment.