Skip to content

Commit

Permalink
Windows CI workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
fardaniqbal committed Nov 4, 2024
1 parent 8c06257 commit a8ee09d
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .github/workflows/c-cpp.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,13 @@ jobs:
# run: choco install make
# #run: yes | (pacman -S make || pacman -S make)
- name: make
run: ${{ matrix.sys.make }} clean && ${{ matrix.sys.make }} -j
run: |
for i in $(echo $PATH | tr : \\n); do
echo "i = $i"
find "$i" -name '*make*'
echo
done
${{ matrix.sys.make }} clean && ${{ matrix.sys.make }} -j
- name: make check
run: |
# Test output is too verbose, so only show it if something fails.
Expand Down

0 comments on commit a8ee09d

Please sign in to comment.