Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Using std::filesystem instead of ghc::filesystem #1008

Merged
merged 22 commits into from
Aug 15, 2020
Merged
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