Skip to content

Commit

Permalink
Update CI script
Browse files Browse the repository at this point in the history
  • Loading branch information
hedtke committed Nov 11, 2024
1 parent 5082e3d commit db65e4d
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -65,9 +65,9 @@ jobs:
boost_version: 1.84.0
- name: Install SCIP
run: |
wget https://github.com/scipopt/scip/releases/download/v901/SCIPOptSuite-9.0.1-Linux-ubuntu22.sh
chmod +x SCIPOptSuite-9.0.1-Linux-ubuntu22.sh
./SCIPOptSuite-9.0.1-Linux-ubuntu22.sh --skip-license
wget https://github.com/scipopt/scip/releases/download/v920/SCIPOptSuite-9.2.0-Linux-ubuntu22.sh
chmod +x SCIPOptSuite-9.2.0-Linux-ubuntu22.sh
./SCIPOptSuite-9.2.0-Linux-ubuntu22.sh --skip-license
- name: Build SCIP++
run: |
CMAKE_PREFIX_PATH=./lib/cmake/scip:./boost/boost/lib/cmake/Boost-1.84.0 cmake -DBUILD_TESTS=ON .
Expand All @@ -77,7 +77,7 @@ jobs:
test_release_inx:
strategy:
matrix:
os: [ ubuntu-latest, macos-11 ]
os: [ ubuntu-latest, macos-13 ]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
Expand All @@ -88,7 +88,7 @@ jobs:
pushd ~/.conan2/profiles
sed -i'' -e 's/gnu17/17/g' *
popd
conan install -of . -o with_tests=True .
conan install -of . -o with_tests=True --build=missing .
- name: Run CMake
run: cmake --preset conan-release .
- name: Compile
Expand Down Expand Up @@ -119,14 +119,14 @@ jobs:
with:
source: source include test
extensions: 'hpp,cpp'
clangFormatVersion: 16
clangFormatVersion: 17
doxygen:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: ssciwr/doxygen-install@v1
with:
version: "1.10.0"
version: "1.12.0"
- uses: ts-graphviz/setup-graphviz@v1
- name: Prepare Doxygen Config
run: echo "PROJECT_NUMBER = ${GITHUB_REF}" >> Doxyfile
Expand Down

0 comments on commit db65e4d

Please sign in to comment.