Skip to content

Commit 8d073fd

Browse files
committed
Update to use g++-14 to compile instead of the defaulted g++-13 etc.
- update inaccurate wording in the file - make sure scripts are executable Signed-off-by: gxu <georgexu420@163.com>
1 parent 171fd23 commit 8d073fd

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

.github/workflows/linter.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -34,11 +34,12 @@ jobs:
3434
sudo apt update -y
3535
sudo apt upgrade -y
3636
sudo DEBIAN_FRONTEND=noninteractive sudo apt install -y tzdata
37-
sudo apt install cmake clang curl pkg-config -y
37+
sudo apt install cmake clang curl pkg-config g++-14 -y
3838
3939
- name: Make scripts executable
4040
run: |
4141
sudo chmod 755 ./scripts/download_install_dependencies.sh
42+
sudo chmod 755 ./scripts/build.sh
4243
4344
- name: Cache Boost
4445
id: cache-boost
@@ -72,9 +73,9 @@ jobs:
7273
run: |
7374
sudo ./scripts/download_install_dependencies.sh capnp install
7475
75-
- name: Build Object Storage Component
76+
- name: Build and test C++ Components
7677
run: |
77-
CXX=$(which g++) ./scripts/build.sh
78+
CXX=$(which g++-14) ./scripts/build.sh
7879
7980
- name: Install Python Dependent Packages
8081
run: |

0 commit comments

Comments
 (0)