Skip to content

Commit

Permalink
Using std::filesystem instead of ghc::filesystem (#1008)
Browse files Browse the repository at this point in the history
  • Loading branch information
xelatihy authored Aug 15, 2020
1 parent da6409c commit bf7319e
Show file tree
Hide file tree
Showing 36 changed files with 180 additions and 73,109 deletions.
28 changes: 14 additions & 14 deletions .github/workflows/macos-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,17 +6,17 @@ jobs:
build:
runs-on: macos-latest
steps:
- uses: actions/checkout@v1
- name: install macos dependencies
run: |
brew update
brew install ninja embree
- name: configure
run: |
mkdir build
cd build
cmake .. -GNinja -DYOCTO_OPENGL=ON -DYOCTO_EMBREE=ON
- name: build
run: |
cd build
cmake --build . --parallel 8
- uses: actions/checkout@v1
- name: install macos dependencies
run: |
brew update
brew install ninja embree
- name: configure
run: |
mkdir build
cd build
cmake .. -GNinja -DYOCTO_OPENGL=ON -DYOCTO_EMBREE=ON
- name: build
run: |
cd build
cmake --build . --parallel 8
31 changes: 17 additions & 14 deletions .github/workflows/ubuntu-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,17 +6,20 @@ jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: install ubuntu dependencies
run: |
sudo apt-get update --yes
sudo apt-get install --yes ninja-build
- name: configure
run: |
mkdir build
cd build
cmake .. -GNinja -DYOCTO_OPENGL=OFF -DYOCTO_EMBREE=OFF
- name: build
run: |
cd build
cmake --build . --parallel 8
- uses: actions/checkout@v1
- name: install ubuntu dependencies
run: |
sudo apt-get update --yes
sudo apt-get install --yes ninja-build
- name: configure
env:
CC: gcc-8
CXX: g++-8
run: |
mkdir build
cd build
cmake .. -GNinja -DYOCTO_OPENGL=OFF -DYOCTO_EMBREE=OFF
- name: build
run: |
cd build
cmake --build . --parallel 8
28 changes: 14 additions & 14 deletions .github/workflows/windows-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,17 +6,17 @@ jobs:
build:
runs-on: windows-latest
steps:
- uses: actions/checkout@v1
- name: install dependencies
run: |
choco update
choco install ninja
- name: configure
run: |
mkdir build
cd build
cmake .. -GNinja -DYOCTO_OPENGL=ON -DYOCTO_EMBREE=OFF
- name: build
run: |
cd build
cmake --build . --parallel 8
- uses: actions/checkout@v1
- name: install dependencies
run: |
choco update
choco install ninja
- name: configure
run: |
mkdir build
cd build
cmake .. -G "Visual Studio 16 2019" -DYOCTO_OPENGL=ON -DYOCTO_EMBREE=OFF
- name: build
run: |
cd build
cmake --build . --parallel 8
Loading

0 comments on commit bf7319e

Please sign in to comment.