Skip to content

Commit e5cb83c

Browse files
committed
pre-commit
1 parent eddd47a commit e5cb83c

File tree

2 files changed

+10
-4
lines changed

2 files changed

+10
-4
lines changed

.github/workflows/testing-ecosystem.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434
wget -qO- https://apt.llvm.org/llvm-snapshot.gpg.key | sudo tee /etc/apt/trusted.gpg.d/apt.llvm.org.asc
3535
echo "deb http://apt.llvm.org/$(lsb_release -cs)/ llvm-toolchain-$(lsb_release -cs)-${LLVM_VERSION} main" | \
3636
sudo tee "/etc/apt/sources.list.d/llvm-${LLVM_VERSION}.list"
37-
37+
3838
# Get everything else from upstream Ubuntu
3939
sudo apt-get update && sudo apt-get install -y \
4040
"clang-${LLVM_VERSION}" \
@@ -48,7 +48,7 @@ jobs:
4848
"liblld-${LLVM_VERSION}-dev" \
4949
"lld-${LLVM_VERSION}" \
5050
"llvm-${LLVM_VERSION}-dev" \
51-
pybind11-dev
51+
pybind11-dev
5252
5353
- name: Check CMake configures
5454
run: cmake --preset ubuntu-release -DHalide_LLVM_ROOT="/usr/lib/llvm-${LLVM_VERSION}"

CMakePresets.json

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -124,13 +124,19 @@
124124
},
125125
{
126126
"name": "ubuntu-debug",
127-
"inherits": ["ubuntu", "debug"],
127+
"inherits": [
128+
"ubuntu",
129+
"debug"
130+
],
128131
"displayName": "Debug (Ubuntu)",
129132
"description": "Debug build for a single-config generator, Ubuntu dependencies"
130133
},
131134
{
132135
"name": "ubuntu-release",
133-
"inherits": ["ubuntu", "release"],
136+
"inherits": [
137+
"ubuntu",
138+
"release"
139+
],
134140
"displayName": "Release (Ubuntu)",
135141
"description": "Release build for a single-config generator, Ubuntu dependencies"
136142
},

0 commit comments

Comments
 (0)