Skip to content

Commit

Permalink
window test update
Browse files Browse the repository at this point in the history
  • Loading branch information
injae committed Jul 11, 2021
1 parent 61fc6e2 commit f595048
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,10 +47,6 @@ jobs:
matrix:
build-type: ['Release', 'Debug']
steps:
- name: Clone Repository
uses: actions/checkout@master
with:
submodules: true
- name: C++ Setting
run: |
sudo add-apt-repository -y ppa:ubuntu-toolchain-r/test
Expand All @@ -64,6 +60,10 @@ jobs:
run: |
echo "CC=clang-8" >> $GITHUB_ENV
echo "CXX=clang++-8" >> $GITHUB_ENV
- name: Clone Repository
uses: actions/checkout@master
with:
submodules: true
- name: CMake build
run: |
cmake -Bbuild -DCMAKE_BUILD_TYPE=${{matrix.build-type}} $CMAKE_FLAGS .
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,12 @@ jobs:
matrix:
build-type: ['Release', 'Debug']
steps:
- name: ccache
uses: hendrikmuhs/ccache-action@v1
- name: Clone Repository
uses: actions/checkout@master
with:
submodules: true
- name: ccache
uses: hendrikmuhs/ccache-action@v1
- name: C++ Setting
run: |
brew install llvm cmake
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/window.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
run: |
cmake -Bbuild -DCMAKE_BUILD_TYPE=${{matrix.build-type}} $CMAKE_FLAGS .
cd build
cmake --build . --config ${{matrix.build-type}}
cmake --build . --config ${{matrix.build-type}} --target install
- name: Run Test Script
run: |
cd build/${{matrix.build-type}}
Expand Down

0 comments on commit f595048

Please sign in to comment.