.github: use clang/clang++ instead of clang-7/clang++-7

this prevent failures on build_ci.sh
This commit is contained in:
Pierre Kancir 2021-09-27 12:33:50 +02:00 committed by Peter Barker
parent 920ccb089f
commit 28a2c1be68
9 changed files with 18 additions and 18 deletions

View File

@ -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"

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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