Skip to content

Commit

Permalink
Try again
Browse files Browse the repository at this point in the history
  • Loading branch information
GwGibson committed May 3, 2024
1 parent 180009c commit 69af54e
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .devcontainer/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ RUN add-apt-repository -y ppa:ubuntu-toolchain-r/test && \
RUN update-alternatives --install /usr/bin/gcc gcc $(which gcc-${GCC_VER}) 100
RUN update-alternatives --install /usr/bin/g++ g++ $(which g++-${GCC_VER}) 100

ARG LLVM_VER="15"
ARG LLVM_VER="16.0.0"
# Add clang-${LLVM_VER}
ARG LLVM_URL="http://apt.llvm.org/${VARIANT}/"
ARG LLVM_PKG="llvm-toolchain-${VARIANT}-${LLVM_VER}"
Expand Down
File renamed without changes.
9 changes: 5 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,12 @@ on:
- main

env:
CLANG_TIDY_VERSION: "18.1.4"
CLANG_TIDY_VERSION: "16"
VERBOSE: 1

jobs:
Test:
if: "!contains(github.event.head_commit.message, '[skip ci]')"
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
Expand All @@ -25,8 +26,8 @@ jobs:
- windows-2022
- windows-2019
compiler:
- gcc-13.1
- llvm-18.1.4
- gcc-11
- llvm-16.0.0
- msvc
generator:
- "Ninja Multi-Config"
Expand All @@ -39,7 +40,7 @@ jobs:

exclude:
- os: windows-2019
compiler: gcc-13.1
compiler: gcc-11
- os: windows-2019
compiler: msvc
- os: ubuntu-20.04
Expand Down

0 comments on commit 69af54e

Please sign in to comment.