Skip to content

Commit

Permalink
Remove external boost references from CI build (#4127)
Browse files Browse the repository at this point in the history
  • Loading branch information
pwojcikdev committed Feb 14, 2023
1 parent dacd0be commit 92e0b64
Show file tree
Hide file tree
Showing 14 changed files with 4 additions and 187 deletions.
2 changes: 0 additions & 2 deletions .github/workflows/beta_artifacts.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,8 +54,6 @@ jobs:
needs: build_auto_setup_job
runs-on: macOS-11
timeout-minutes: 90
env:
BOOST_ROOT: /tmp/boost
steps:
- name: Set the tag and the pre-release version
run: |
Expand Down
2 changes: 0 additions & 2 deletions .github/workflows/beta_artifacts_latest_release_branch.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,8 +45,6 @@ jobs:
needs: build_auto_setup_job
runs-on: macOS-11
timeout-minutes: 90
env:
BOOST_ROOT: /tmp/boost
steps:
- name: Set the tag and the pre-release version
run: |
Expand Down
2 changes: 0 additions & 2 deletions .github/workflows/coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@ jobs:
env:
LCOV: 1
COMPILER: gcc
BOOST_ROOT: /tmp/boost
runs-on: ubuntu-20.04
strategy:
matrix:
Expand All @@ -33,7 +32,6 @@ jobs:
sudo apt-get update -qq && sudo apt-get install -yqq build-essential g++ wget python zlib1g-dev qt5-default \
valgrind xorg xvfb xauth xfonts-100dpi xfonts-75dpi xfonts-scalable xfonts-cyrillic ocl-icd-opencl-dev \
git lcov python3-pip
util/build_prep/fetch_boost.sh
wget -O cmake_install.sh https://github.com/Kitware/CMake/releases/download/v3.15.4/cmake-3.15.4-Linux-x86_64.sh
chmod +x cmake_install.sh
sudo ./cmake_install.sh --prefix=/usr --exclude-subdir --skip-license
Expand Down
2 changes: 0 additions & 2 deletions .github/workflows/live_artifacts.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,6 @@ jobs:
osx_job:
runs-on: macOS-11
timeout-minutes: 90
env:
BOOST_ROOT: /tmp/boost
steps:
- name: tag
run: |
Expand Down
2 changes: 0 additions & 2 deletions .github/workflows/test_network_artifacts.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,6 @@ jobs:
osx_job:
runs-on: macOS-11
timeout-minutes: 90
env:
BOOST_ROOT: /tmp/boost
steps:
- name: tag
run: |
Expand Down
1 change: 0 additions & 1 deletion .github/workflows/unit_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@ jobs:
RELEASE:
- ${{ startsWith(github.ref, 'refs/tags/') }}
env:
BOOST_ROOT: /tmp/boost
TEST_USE_ROCKSDB: ${{ matrix.TEST_USE_ROCKSDB }}
RELEASE: ${{ matrix.RELEASE }}
runs-on: macOS-11
Expand Down
1 change: 0 additions & 1 deletion ci/actions/osx/install_deps.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,4 @@
brew update
brew install coreutils
brew cask install xquartz
sudo util/build_prep/fetch_boost.sh
util/build_prep/macosx/build_qt.sh
2 changes: 0 additions & 2 deletions ci/build-ci.sh
Original file line number Diff line number Diff line change
Expand Up @@ -50,8 +50,6 @@ cmake \
-DNANO_WARN_TO_ERR=ON \
-DCMAKE_BUILD_TYPE=${BUILD_TYPE:-Debug} \
-DCMAKE_VERBOSE_MAKEFILE=ON \
-DBOOST_ROOT=${BOOST_ROOT:-/tmp/boost/} \
-DNANO_SHARED_BOOST=ON \
-DQt5_DIR=${qt_dir} \
-DCI_TEST="1" \
${BACKTRACE:-} \
Expand Down
2 changes: 0 additions & 2 deletions ci/build-deploy.sh
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,6 @@ cmake \
-DPORTABLE=1 \
-DCMAKE_BUILD_TYPE=${CONFIGURATION} \
-DCMAKE_VERBOSE_MAKEFILE=ON \
-DBOOST_ROOT=/tmp/boost/ \
-DNANO_SHARED_BOOST=ON \
-DQt5_DIR=${qt_dir} \
-DCI_BUILD=true \
-DCI_VERSION_PRE_RELEASE="${ci_version_pre_release}" \
Expand Down
3 changes: 2 additions & 1 deletion docker/ci/Dockerfile-base
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,8 @@ g++ \
wget \
python \
zlib1g-dev \
cmake
cmake \
git

RUN apt-get update -qq && apt-get install -yqq \
qt5-default \
Expand Down
4 changes: 1 addition & 3 deletions docker/ci/Dockerfile-clang
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,7 @@ FROM ${ENV_REPOSITORY}:base

RUN apt-get update -qq && apt-get install -yqq \
clang \
lldb \
git \
libboost-all-dev
lldb

ENV CXX=/usr/bin/clang++
ENV CC=/usr/bin/clang
Expand Down
3 changes: 1 addition & 2 deletions docker/ci/Dockerfile-gcc
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,7 @@ ARG ENV_REPOSITORY=nanocurrency/nano-env
FROM ${ENV_REPOSITORY}:base

RUN apt-get update -qq && apt-get install -yqq \
git \
libboost-all-dev
..

ARG REPOSITORY=nanocurrency/nano-node
LABEL org.opencontainers.image.source https://github.com/$REPOSITORY
150 changes: 0 additions & 150 deletions util/build_prep/bootstrap_boost.sh

This file was deleted.

15 changes: 0 additions & 15 deletions util/build_prep/fetch_boost.sh

This file was deleted.

0 comments on commit 92e0b64

Please sign in to comment.