Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
StellarWarp committed Sep 16, 2024
1 parent ecdfbb5 commit 11f6abc
Showing 1 changed file with 10 additions and 7 deletions.
17 changes: 10 additions & 7 deletions .github/workflows/clang.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,20 +30,23 @@ jobs:
steps:
- uses: actions/checkout@v4

- name: Add clang path to $PATH env
shell: bash
if: runner.os == 'Windows'
run: |
echo "PATH=$PATH:C:\msys64\mingw64\bin" >> "$GITHUB_ENV"
clang --version
cmake --version
# - name: Add clang path to $PATH env
# shell: bash
# if: runner.os == 'Windows'
# run: |
# echo "PATH=$PATH:C:\msys64\mingw64\bin" >> "$GITHUB_ENV"
# clang --version
# cmake --version

- name: Set reusable strings
# Turn repeated input strings (such as the build output directory) into step outputs. These step outputs can be used throughout the workflow file.
id: strings
shell: bash
run: |
echo "build-output-dir=${{ github.workspace }}/build" >> "$GITHUB_OUTPUT"
echo "PATH=$PATH:C:\msys64\mingw64\bin" >> "$GITHUB_ENV"
clang --version
cmake --version
- name: Configure CMake
# Configure CMake in a 'build' subdirectory. `CMAKE_BUILD_TYPE` is only required if you are using a single-configuration generator such as make.
Expand Down

0 comments on commit 11f6abc

Please sign in to comment.