-
Notifications
You must be signed in to change notification settings - Fork 48
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
e984d9d
commit 8a68354
Showing
1 changed file
with
10 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -59,7 +59,8 @@ jobs: | |
- uses: prefix-dev/[email protected] | ||
|
||
- name: Build | ||
- name: Workaround on Windows | ||
if: contains(matrix.os, 'windows') | ||
shell: bash | ||
run: | | ||
# Avoid YCM complaining that the git user is not set | ||
|
@@ -72,4 +73,12 @@ jobs: | |
pixi run configure-all | ||
# Workaround for build-ros2 builds | ||
pixi run configure-ros2 | ||
- name: Build | ||
shell: bash | ||
run: | | ||
# Avoid YCM complaining that the git user is not set | ||
# Eventually we could consider removing that check in YCM | ||
git config --global user.name PixiGHA User | ||
git config --global user.email [email protected] | ||
pixi run ${{ matrix.pixi_task }} |