Skip to content

Commit 3d5f513

Browse files
committed
gh-actions gcc-16: fix typo
1 parent 05dbd17 commit 3d5f513

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -447,8 +447,8 @@ jobs:
447447
- name: add ccache to the build path
448448
run: |
449449
export PATH="/usr/lib/ccache:/usr/local/opt/ccache/libexec:$PATH"
450-
sudo ln -s /usr/bin/${CCBIN} /usr/bin/gcc
451-
sudo ln -s /usr/bin/${CXXBIN} /usr/bin/g++
450+
sudo ln -s "/usr/bin/${CCBIN}" /usr/bin/gcc
451+
sudo ln -s "/usr/bin/${CXXBIN}" /usr/bin/g++
452452
- name: Configure
453453
run: meson setup build || (cat build/meson-logs/meson-log.txt ; false)
454454
- name: Build

.github/workflows/gcc-snapshot.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -319,8 +319,8 @@ jobs:
319319
sudo apt-get -y --no-install-recommends install ccache ninja-build \
320320
binfmt-support qemu-user-static pipx libc6-${{ matrix.arch_deb }}-cross
321321
sudo apt-get install -y ${{ github.event.client_payload.extra }} \
322-
gcc-${{ matrix.version }}-${{ matrix.arch_gnu }}-linux-gnu$ \
323-
g++-${{ matrix.version }}-${{ matrix.arch_gnu }}-linux-gnu$ \
322+
gcc-${{ matrix.version }}-${{ matrix.arch_gnu }}-linux-gnu \
323+
g++-${{ matrix.version }}-${{ matrix.arch_gnu }}-linux-gnu \
324324
libstdc++-${{ matrix.version }}-dev-${{ matrix.arch_deb }}-cross
325325
pipx install meson==1.3.2
326326
# - name: ccache

0 commit comments

Comments
 (0)