Skip to content

Commit

Permalink
github action working directroy bugfix
Browse files Browse the repository at this point in the history
  • Loading branch information
injae committed Jul 11, 2021
1 parent a86b730 commit 875b969
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 20 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ jobs:
cmake --build . --config ${{matrix.build-type}}
- name: Run Test Script
run: |
cd ${{matrix.build-type}}
cd build/${{matrix.build-type}}
./serde_example
./serde_example1
./simple_example
Expand Down
19 changes: 1 addition & 18 deletions .github/workflows/macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,25 +29,8 @@ jobs:
cmake --build . --config ${{matrix.build-type}}
- name: Run Test Script
run: |
cd ${{matrix.build-type}}
cd build/${{matrix.build-type}}
./serde_example
./serde_example1
./simple_example
# runs-on: macos-latest
# strategy:
# matrix:
# c-compiler: [gcc, clang]
# cxx-compiler: [g++, clang++]
# steps:
# - name: Clone Repository
# uses: actions/checkout@master
# - name: Compiler Setting
# run: echo Compiler Setting
# env:
# CC: ${{matrix.compiler}}
# - name: CMake build
# run: cmake -Bbuild . && cd build && cmake --build .
# - name: Cppm build install
# run: cd build && ./cppm build install
2 changes: 1 addition & 1 deletion .github/workflows/window.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
cmake --build . --config ${{matrix.build-type}}
- name: Run Test Script
run: |
cd ${{matrix.build-type}}
cd build/${{matrix.build-type}}
./serde_example
./serde_example1
./simple_example

0 comments on commit 875b969

Please sign in to comment.