Skip to content

Commit

Permalink
same ****
Browse files Browse the repository at this point in the history
  • Loading branch information
a-zakir committed Jan 5, 2024
1 parent f088264 commit f7bef4c
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 9 deletions.
17 changes: 9 additions & 8 deletions .github/workflows/centos7-system-deps-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -82,6 +82,11 @@ jobs:
pip3 install wheel #Does not work in requirements
pip3 install -r requirements-tests.txt
- name: Setup cmake
uses: jwlawson/[email protected]
with:
cmake-version: '3.22.x'

- name: Compile Boost
uses: ./.github/workflows/compile-boost
with:
Expand All @@ -90,12 +95,8 @@ jobs:
- name: Compile tbb
uses: ./.github/workflows/compile-tbb
with:
cmake: 'cmake3'
cmake: 'cmake'

- name: Setup cmake
uses: jwlawson/[email protected]
with:
cmake-version: '3.22.x'

- name: Configure
run: |
Expand All @@ -118,17 +119,17 @@ jobs:
source /etc/profile.d/modules.sh
module load mpi
cd _build
ctest3 -C Release --output-on-failure -L "unit|benders|lpnamer|medium"
ctest -C Release --output-on-failure -L "unit|benders|lpnamer|medium"
- name: .tar.gz creation
run: |
cd _build
cpack3 -G TGZ
cpack -G TGZ
- name: Installer .rpm creation
run: |
cd _build
cpack3 -G RPM
cpack -G RPM
- id: create-single-file
name: Single file .tar.gz creation
Expand Down
2 changes: 1 addition & 1 deletion docker/centos7-system-deps
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ RUN yum install -y epel-release

RUN \
yum install -y wget git epel-release redhat-lsb-core gcc gcc-c++ make centos-release-scl scl-utils &&\
yum install -y cmake3 devtoolset-9 environment-modules rpm-build zlib-devel &&\
yum install -y devtoolset-9 environment-modules rpm-build zlib-devel &&\
yum install -y jsoncpp-devel openmpi-devel doxygen graphviz &&\
yum install -y gtest-devel &&\
yum install -y install python3-devel && \
Expand Down

0 comments on commit f7bef4c

Please sign in to comment.