.github: use clang/clang++ instead of clang-7/clang++-7
this prevent failures on build_ci.sh
This commit is contained in:
parent
920ccb089f
commit
28a2c1be68
4
.github/workflows/test_chibios.yml
vendored
4
.github/workflows/test_chibios.yml
vendored
@ -71,8 +71,8 @@ jobs:
|
||||
shell: bash
|
||||
run: |
|
||||
if [[ ${{ matrix.toolchain }} == "chibios-clang" ]]; then
|
||||
export CC=clang-7
|
||||
export CXX=clang++-7
|
||||
export CC=clang
|
||||
export CXX=clang++
|
||||
fi
|
||||
PATH="/usr/lib/ccache:/opt/gcc-arm-none-eabi-${{matrix.gcc}}/bin:$PATH"
|
||||
PATH="/github/home/.local/bin:$PATH"
|
||||
|
4
.github/workflows/test_linux_sbc.yml
vendored
4
.github/workflows/test_linux_sbc.yml
vendored
@ -73,8 +73,8 @@ jobs:
|
||||
shell: bash
|
||||
run: |
|
||||
if [[ ${{ matrix.toolchain }} == "clang" ]]; then
|
||||
export CC=clang-7
|
||||
export CXX=clang++-7
|
||||
export CC=clang
|
||||
export CXX=clang++
|
||||
fi
|
||||
PATH="/github/home/.local/bin:$PATH"
|
||||
Tools/scripts/build_ci.sh
|
||||
|
4
.github/workflows/test_replay.yml
vendored
4
.github/workflows/test_replay.yml
vendored
@ -54,8 +54,8 @@ jobs:
|
||||
shell: bash
|
||||
run: |
|
||||
if [[ ${{ matrix.toolchain }} == "clang" ]]; then
|
||||
export CC=clang-7
|
||||
export CXX=clang++-7
|
||||
export CC=clang
|
||||
export CXX=clang++
|
||||
fi
|
||||
PATH="/github/home/.local/bin:$PATH"
|
||||
Tools/scripts/build_ci.sh
|
||||
|
4
.github/workflows/test_sitl_copter.yml
vendored
4
.github/workflows/test_sitl_copter.yml
vendored
@ -49,8 +49,8 @@ jobs:
|
||||
shell: bash
|
||||
run: |
|
||||
if [[ ${{ matrix.toolchain }} == "clang" ]]; then
|
||||
export CC=clang-7
|
||||
export CXX=clang++-7
|
||||
export CC=clang
|
||||
export CXX=clang++
|
||||
fi
|
||||
PATH="/github/home/.local/bin:$PATH"
|
||||
./waf configure --board sitl
|
||||
|
4
.github/workflows/test_sitl_plane.yml
vendored
4
.github/workflows/test_sitl_plane.yml
vendored
@ -49,8 +49,8 @@ jobs:
|
||||
shell: bash
|
||||
run: |
|
||||
if [[ ${{ matrix.toolchain }} == "clang" ]]; then
|
||||
export CC=clang-7
|
||||
export CXX=clang++-7
|
||||
export CC=clang
|
||||
export CXX=clang++
|
||||
fi
|
||||
PATH="/github/home/.local/bin:$PATH"
|
||||
./waf configure --board sitl
|
||||
|
4
.github/workflows/test_sitl_rover.yml
vendored
4
.github/workflows/test_sitl_rover.yml
vendored
@ -49,8 +49,8 @@ jobs:
|
||||
shell: bash
|
||||
run: |
|
||||
if [[ ${{ matrix.toolchain }} == "clang" ]]; then
|
||||
export CC=clang-7
|
||||
export CXX=clang++-7
|
||||
export CC=clang
|
||||
export CXX=clang++
|
||||
fi
|
||||
PATH="/github/home/.local/bin:$PATH"
|
||||
./waf configure --board sitl
|
||||
|
4
.github/workflows/test_sitl_sub.yml
vendored
4
.github/workflows/test_sitl_sub.yml
vendored
@ -49,8 +49,8 @@ jobs:
|
||||
shell: bash
|
||||
run: |
|
||||
if [[ ${{ matrix.toolchain }} == "clang" ]]; then
|
||||
export CC=clang-7
|
||||
export CXX=clang++-7
|
||||
export CC=clang
|
||||
export CXX=clang++
|
||||
fi
|
||||
PATH="/github/home/.local/bin:$PATH"
|
||||
./waf configure --board sitl
|
||||
|
4
.github/workflows/test_sitl_tracker.yml
vendored
4
.github/workflows/test_sitl_tracker.yml
vendored
@ -49,8 +49,8 @@ jobs:
|
||||
shell: bash
|
||||
run: |
|
||||
if [[ ${{ matrix.toolchain }} == "clang" ]]; then
|
||||
export CC=clang-7
|
||||
export CXX=clang++-7
|
||||
export CC=clang
|
||||
export CXX=clang++
|
||||
fi
|
||||
PATH="/github/home/.local/bin:$PATH"
|
||||
./waf configure --board sitl
|
||||
|
4
.github/workflows/test_unit_tests.yml
vendored
4
.github/workflows/test_unit_tests.yml
vendored
@ -59,8 +59,8 @@ jobs:
|
||||
shell: 'script -q -e -c "bash {0}"'
|
||||
run: |
|
||||
if [[ ${{ matrix.toolchain }} == "clang" ]]; then
|
||||
export CC=clang-7
|
||||
export CXX=clang++-7
|
||||
export CC=clang
|
||||
export CXX=clang++
|
||||
fi
|
||||
PATH="/github/home/.local/bin:$PATH"
|
||||
Tools/scripts/build_ci.sh
|
||||
|
Loading…
Reference in New Issue
Block a user