Browse Source

GHA CI: install boost from upstream

adaptive-webui-19844
Chocobo1 1 year ago
parent
commit
da4f2c2439
No known key found for this signature in database
GPG Key ID: 210D9C873253A68C
  1. 18
      .github/workflows/ci_ubuntu.yaml

18
.github/workflows/ci_ubuntu.yaml

@ -22,6 +22,9 @@ jobs: @@ -22,6 +22,9 @@ jobs:
qbt_gui: ["GUI=ON", "GUI=OFF"]
qt_version: ["6.5.2"]
env:
boost_path: "${{ github.workspace }}/../boost"
steps:
- name: Checkout repository
uses: actions/checkout@v3
@ -30,8 +33,8 @@ jobs: @@ -30,8 +33,8 @@ jobs:
run: |
sudo apt update
sudo apt install \
build-essential cmake ninja-build pkg-config \
libboost-dev libssl-dev libxkbcommon-x11-dev libxcb-cursor-dev zlib1g-dev
build-essential cmake ninja-build \
libssl-dev libxkbcommon-x11-dev libxcb-cursor-dev zlib1g-dev
- name: Setup ccache
uses: Chocobo1/setup-ccache-action@v1
@ -40,6 +43,15 @@ jobs: @@ -40,6 +43,15 @@ jobs:
ccache_options: |
max_size=2G
- name: Install boost
run: |
curl \
-L \
-o "${{ runner.temp }}/boost.tar.bz2" \
"https://boostorg.jfrog.io/artifactory/main/release/1.76.0/source/boost_1_76_0.tar.bz2"
tar -xf "${{ runner.temp }}/boost.tar.bz2" -C "${{ github.workspace }}/.."
mv "${{ github.workspace }}/.."/boost_* "${{ env.boost_path }}"
- name: Install Qt
uses: jurplel/install-qt-action@v3
with:
@ -60,6 +72,7 @@ jobs: @@ -60,6 +72,7 @@ jobs:
-DBUILD_SHARED_LIBS=OFF \
-DCMAKE_BUILD_TYPE=RelWithDebInfo \
-DCMAKE_EXPORT_COMPILE_COMMANDS=ON \
-DBOOST_ROOT="${{ env.boost_path }}" \
-Ddeprecated-functions=OFF
cmake --build build
sudo cmake --install build
@ -82,6 +95,7 @@ jobs: @@ -82,6 +95,7 @@ jobs:
-G "Ninja" \
-DCMAKE_BUILD_TYPE=RelWithDebInfo \
-DCMAKE_EXPORT_COMPILE_COMMANDS=ON \
-DBOOST_ROOT="${{ env.boost_path }}" \
-DCMAKE_INSTALL_PREFIX="/usr" \
-DTESTING=ON \
-DVERBOSE_CONFIGURE=ON \

Loading…
Cancel
Save