Skip to content

Commit 26e8cf1

Browse files
committed
ci: comment out Linux build job for now and update Windows shell to msys2bash
1 parent e13c339 commit 26e8cf1

File tree

1 file changed

+35
-35
lines changed

1 file changed

+35
-35
lines changed

.github/workflows/ci.yaml

+35-35
Original file line numberDiff line numberDiff line change
@@ -3,46 +3,46 @@ name: CI
33
on: [push, pull_request]
44

55
jobs:
6-
build-linux:
7-
name: ubuntu-22.04-release
8-
runs-on: ubuntu-22.04
9-
env:
10-
CMAKE_GENERATOR: Ninja
11-
DEBIAN_FRONTEND: noninteractive
12-
defaults:
13-
run:
14-
shell: bash -e -o pipefail {0}
15-
steps:
16-
- name: install dependencies
17-
run: |
18-
sudo apt update
19-
sudo apt install -y \
20-
build-essential \
21-
clang-format \
22-
cmake \
23-
ninja-build
24-
- name: checkout repository
25-
uses: actions/checkout@v4
26-
- name: configure
27-
run: |
28-
cmake -S . -B build \
29-
-DCMAKE_BUILD_TYPE=Release
30-
- name: build
31-
run: |
32-
cmake --build build
33-
- name: test
34-
run: |
35-
cd build
36-
ctest --output-on-failure
37-
- name: install
38-
run: |
39-
sudo cmake --install build
6+
# build-linux:
7+
# name: ubuntu-22.04-release
8+
# runs-on: ubuntu-22.04
9+
# env:
10+
# CMAKE_GENERATOR: Ninja
11+
# DEBIAN_FRONTEND: noninteractive
12+
# defaults:
13+
# run:
14+
# shell: bash -e -o pipefail {0}
15+
# steps:
16+
# - name: install dependencies
17+
# run: |
18+
# sudo apt update
19+
# sudo apt install -y \
20+
# build-essential \
21+
# clang-format \
22+
# cmake \
23+
# ninja-build
24+
# - name: checkout repository
25+
# uses: actions/checkout@v4
26+
# - name: configure
27+
# run: |
28+
# cmake -S . -B build \
29+
# -DCMAKE_BUILD_TYPE=Release
30+
# - name: build
31+
# run: |
32+
# cmake --build build
33+
# - name: test
34+
# run: |
35+
# cd build
36+
# ctest --output-on-failure
37+
# - name: install
38+
# run: |
39+
# sudo cmake --install build
4040
build-windows:
4141
name: windows-2022-release
4242
runs-on: windows-2022
4343
defaults:
4444
run:
45-
shell: msys2 {0}
45+
shell: msys2bash {0}
4646
steps:
4747
- name: checkout repository
4848
uses: actions/checkout@v4

0 commit comments

Comments
 (0)