Skip to content

Commit

Permalink
fix: github action
Browse files Browse the repository at this point in the history
add pip install
  • Loading branch information
molingyu committed Sep 4, 2024
1 parent a88d04b commit 4ede28e
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ jobs:
- uses: actions/setup-python@v5
with:
python-version: '3.10'
run: pip install jinja2

- name: Configure CMake
run: cmake -B ${{github.workspace}}/build -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}}
Expand All @@ -39,6 +40,7 @@ jobs:
- uses: actions/setup-python@v5
with:
python-version: '3.10'
run: pip install jinja2

- name: Configure CMake
run: cmake -B ${{github.workspace}}/build -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}} -DCMAKE_CXX_COMPILER=clang++-14 -DCMAKE_C_COMPILER=clang
Expand All @@ -59,6 +61,7 @@ jobs:
- uses: actions/setup-python@v5
with:
python-version: '3.10'
run: pip install jinja2

- name: Configure CMake
run: cmake -B ${{github.workspace}}/build -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}}
Expand All @@ -77,6 +80,9 @@ jobs:

- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: '3.10'
run: pip install jinja2

- name: Setup MSVC dev command prompt
uses: TheMrMilchmann/setup-msvc-dev@v3
Expand Down

0 comments on commit 4ede28e

Please sign in to comment.