Skip to content

Add support for using Ubuntu 24.04 in CI #140

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion .github/workflows/linux-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ concurrency:

jobs:
ubuntu-release:
runs-on: ubuntu-22.04
runs-on: ubuntu-latest
if: ${{ github.repository == 'facebookincubator/nimble' }}
name: "Ubuntu Build"
env:
Expand All @@ -53,6 +53,12 @@ jobs:

- name: Install Dependencies
run: |
# It seems that we can't use GTest 1.13.0 bundled in Velox
# with libstdc++ 14. We can remove this after Velox updates
# bundled GTest.
sudo apt purge -y libgcc-14-dev
sudo apt install -y libgcc-13-dev

sudo apt install -y \
clang-15 \
ccache \
Expand Down
Loading