Skip to content

Commit

Permalink
Update cmake.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
playday3008 committed Mar 19, 2021
1 parent 507092c commit d91d12c
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/cmake.yml
Expand Up @@ -12,11 +12,11 @@ jobs:

steps:
- uses: actions/checkout@v2
- run: mkdir -p /tmp/termcolor && cd "$_"
- run: mkdir -p /tmp/termcolor && cd /tmp/termcolor
- run: cmake $GITHUB_WORKSPACE
- run: sudo make install

- run: mkdir -p /tmp/example && cd "$_"
- run: mkdir -p /tmp/example && cd /tmp/example
- run: cmake $GITHUB_WORKSPACE/examples/cmake-package
- run: make && ./example

Expand All @@ -26,7 +26,7 @@ jobs:
steps:
- uses: actions/checkout@v2
- run: sudo pip install cmake
- run: mkdir -p /tmp/example && cd "$_"
- run: mkdir -p /tmp/example && cd /tmp/example
- run: /usr/local/bin/cmake $GITHUB_WORKSPACE/examples/cmake-fetch
- run: make && ./example

Expand All @@ -35,7 +35,7 @@ jobs:

steps:
- uses: actions/checkout@v2
- run: mkdir -p /tmp/example && cd "$_"
- run: mkdir -p /tmp/example && cd /tmp/example
- run: cmake $GITHUB_WORKSPACE/examples/cmake-submodule
- run: make && ./example

Expand All @@ -44,6 +44,6 @@ jobs:

steps:
- uses: actions/checkout@v2
- run: mkdir -p /tmp/example && cd "$_"
- run: mkdir -p /tmp/example && cd /tmp/example
- run: cmake $GITHUB_WORKSPACE/examples/cmake-external
- run: make && ./example

0 comments on commit d91d12c

Please sign in to comment.