Skip to content

Commit

Permalink
gh-1: build only template
Browse files Browse the repository at this point in the history
  • Loading branch information
EgorOrachyov committed Aug 5, 2023
1 parent 84cec81 commit 56b23e7
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ jobs:
run: cmake . -G Ninja -B ${{ env.build_dir }} -DCMAKE_BUILD_TYPE=${{ env.config }}

- name: Build library sources
run: cmake --build ${{ env.build_dir }}
run: cmake --build ${{ env.build_dir }} --target=template

ubuntu:
runs-on: ubuntu-latest
Expand Down Expand Up @@ -100,7 +100,7 @@ jobs:
CXX: g++-9

- name: Build library sources
run: cmake --build ${{ env.build_dir }}
run: cmake --build ${{ env.build_dir }} --target=template

macos:
runs-on: macos-latest
Expand All @@ -127,4 +127,4 @@ jobs:
CC: clang

- name: Build library sources x64
run: cmake --build ${{ env.build_dir }}
run: cmake --build ${{ env.build_dir }} --target=template

0 comments on commit 56b23e7

Please sign in to comment.