Skip to content

Commit

Permalink
Try clang 13
Browse files Browse the repository at this point in the history
  • Loading branch information
jd-13 committed Nov 22, 2023
1 parent 7191cec commit 3b0221a
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build-plugin-ci-images.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,9 @@ jobs:
- name: Build and push
uses: docker/build-push-action@v5
with:
context: "{{defaultContext}}:DockerFiles/clang10/."
context: "{{defaultContext}}:DockerFiles/clang13/."
push: true
tags: jackd13/audioplugins:clang10
tags: jackd13/audioplugins:clang13

BuildGCC:
runs-on: ubuntu-latest
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,12 +17,12 @@ ENV CATCH_PATH /home/catch/
# Clang
RUN apt-get install -y software-properties-common
RUN wget -O - http://apt.llvm.org/llvm-snapshot.gpg.key | apt-key add -
RUN add-apt-repository -y "deb http://apt.llvm.org/$(lsb_release -c -s)/ llvm-toolchain-$(lsb_release -c -s)-10 main"
RUN add-apt-repository -y "deb http://apt.llvm.org/$(lsb_release -c -s)/ llvm-toolchain-$(lsb_release -c -s)-13 main"
RUN apt-get update
RUN apt-get install -y clang-10 clang-tidy
RUN apt-get install -y clang-13 clang-tidy

ENV PATH /opt/llvm/bin:$PATH
ENV CXX clang++-10
ENV CXX clang++-13

# Valgrind
RUN apt-get install -y valgrind
Expand Down

0 comments on commit 3b0221a

Please sign in to comment.