Skip to content

Commit

Permalink
Enable git227 and devtooset9 globaly (CentOS7 build deps)
Browse files Browse the repository at this point in the history
  • Loading branch information
JasonMarechal25 committed Oct 6, 2023
1 parent 1c3bc6a commit 0ba08ef
Showing 1 changed file with 6 additions and 10 deletions.
16 changes: 6 additions & 10 deletions .github/workflows/centos7-system-deps-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,13 +62,14 @@ jobs:
yum install -y rh-git227-git
yum install -y libuuid-devel
- name: Clone
- name: update bashrc
run: |
git config --global --add safe.directory ${GITHUB_WORKSPACE}
git clone $GITHUB_SERVER_URL/$GITHUB_REPOSITORY.git -b ${{ steps.branch-name.outputs.current_branch }} .
git submodule update --init
echo "source scl_source enable rh-git227" >> ~/.bashrc
echo "source scl_source enable devtoolset-9" >> ~/.bashrc
- uses: actions/checkout@v3
with:
submodules: true

- name: Install dependencies
run: |
Expand All @@ -87,9 +88,6 @@ jobs:

- name: Configure
run: |
source /opt/rh/devtoolset-9/enable
#git 2.x must be enabled for Coin compilation with CMake ExternalProject_Add
source /opt/rh/rh-git227/enable
export LD_LIBRARY_PATH=/usr/lib64/openmpi/lib:$LD_LIBRARY_PATH
export PATH=/usr/lib64/openmpi/bin:$PATH
cmake3 -B _build -S . \
Expand All @@ -98,8 +96,6 @@ jobs:
- name: Build
run: |
source /opt/rh/devtoolset-9/enable
source /opt/rh/rh-git227/enable
export LD_LIBRARY_PATH=/usr/lib64/openmpi/lib:$LD_LIBRARY_PATH
export PATH=/usr/lib64/openmpi/bin:$PATH
cmake3 --build _build --config Release -j2 --target install
Expand Down

0 comments on commit 0ba08ef

Please sign in to comment.