Skip to content

Commit

Permalink
Merge branch 'pull-request/#777-Allow-Building-Tests-as-Submodule-and…
Browse files Browse the repository at this point in the history
…-GCC-less-than-11' of https://github.com/ETLCPP/etl into pull-request/#777-Allow-Building-Tests-as-Submodule-and-GCC-less-than-11

# Conflicts:
#	.github/workflows/clang.yml
  • Loading branch information
John Wellbelove committed Oct 26, 2023
2 parents 3173d7e + 221cc42 commit 623687f
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions .github/workflows/clang.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ on:
branches: [ master, pull-request/* ]

jobs:

build-clang-cpp11-linux-stl:
name: Clang C++11 Linux - STL
runs-on: ${{ matrix.os }}
Expand Down Expand Up @@ -82,6 +83,13 @@ jobs:
steps:
- uses: actions/checkout@v3

# Temporary fix. See https://github.com/actions/runner-images/issues/8659
- name: Install newer Clang
run: |
wget https://apt.llvm.org/llvm.sh
chmod +x ./llvm.sh
sudo ./llvm.sh 17
- name: Build
run: |
export CC=clang
Expand All @@ -104,6 +112,13 @@ jobs:
steps:
- uses: actions/checkout@v3

# Temporary fix. See https://github.com/actions/runner-images/issues/8659
- name: Install newer Clang
run: |
wget https://apt.llvm.org/llvm.sh
chmod +x ./llvm.sh
sudo ./llvm.sh 17
- name: Build
run: |
export CC=clang
Expand All @@ -126,6 +141,13 @@ jobs:
steps:
- uses: actions/checkout@v3

# Temporary fix. See https://github.com/actions/runner-images/issues/8659
- name: Install newer Clang
run: |
wget https://apt.llvm.org/llvm.sh
chmod +x ./llvm.sh
sudo ./llvm.sh 17
- name: Build
run: |
export CC=clang
Expand All @@ -148,6 +170,13 @@ jobs:
steps:
- uses: actions/checkout@v3

# Temporary fix. See https://github.com/actions/runner-images/issues/8659
- name: Install newer Clang
run: |
wget https://apt.llvm.org/llvm.sh
chmod +x ./llvm.sh
sudo ./llvm.sh 17
- name: Build
run: |
export CC=clang
Expand Down

0 comments on commit 623687f

Please sign in to comment.