Skip to content
Prev Previous commit
Next Next commit
Update .github/workflows/ubuntu_install.yml
Co-authored-by: Yagiz Nizipli <[email protected]>
  • Loading branch information
lemire and anonrig authored Oct 6, 2024
commit c3b8b251ad67a0272778f255c26228af9c60a5d0
2 changes: 1 addition & 1 deletion .github/workflows/ubuntu_install.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
- name: Install
run: cmake --install build
- name: Prepare test package
run: cmake -DCMAKE_INSTALL_PREFIX:PATH=../../destination -S tests/installation
run: cmake -DCMAKE_INSTALL_PREFIX:PATH=../../destination -S tests/installation |
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

We need to either pass CC=gcc-12 CXX=g++-12 or do sudo ln -sf /usr/bin/gcc-12 /usr/bin/gcc kind of symlink to fix the issue. Ubuntu 22 doesn't include gcc 12 or something newer

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Let us upgrade to ubuntu 24.

Messing around with paths is fragile.

-B buildbabyada
- name: Build test package
run: cmake --build buildbabyada
Expand Down