Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
Matthew Chaplain committed Jan 5, 2024
1 parent fa2ccf7 commit fc5ed2a
Show file tree
Hide file tree
Showing 2 changed files with 35 additions and 34 deletions.
68 changes: 34 additions & 34 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,37 +20,37 @@ jobs:
BUILD_TYPE: ${{ matrix.build_type }}

steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0

- name: Get latest cmake
shell: bash
run: pip install --upgrade cmake

- name: Install latest Boost
shell: bash
run: |
sudo apt-add-repository ppa:mhier/libboost-latest
sudo apt install libboost1.74-dev
- name: Install libfmt
shell: bash
run: |
sudo apt install libfmt-dev
- name: Install dependencies from source
run: .ci/fetch_system_dependencies.sh
- name: Create Build Environment
run: cmake -E make_directory ${{runner.workspace}}/munin/build

- name: Configure CMake
shell: bash
working-directory: ${{runner.workspace}}/munin/build
run: cmake $GITHUB_WORKSPACE -DCMAKE_BUILD_TYPE=$BUILD_TYPE -DCMAKE_PREFIX_PATH=$EXTERNAL_ROOT

- name: Build
shell: bash
working-directory: ${{runner.workspace}}/munin/build
run: cmake --build . --config $BUILD_TYPE
- uses: actions/checkout@v2
with:
fetch-depth: 0

- name: Get latest cmake
shell: bash
run: pip install --upgrade cmake

- name: Install latest Boost
shell: bash
run: |
apt search boost
sudo apt install libboost1.83-all-dev
- name: Install libfmt
shell: bash
run: |
sudo apt install libfmt-dev
- name: Install dependencies from source
run: .ci/fetch_system_dependencies.sh

- name: Create Build Environment
run: cmake -E make_directory ${{runner.workspace}}/munin/build

- name: Configure CMake
shell: bash
working-directory: ${{runner.workspace}}/munin/build
run: cmake $GITHUB_WORKSPACE -DCMAKE_BUILD_TYPE=$BUILD_TYPE -DCMAKE_PREFIX_PATH=$EXTERNAL_ROOT

- name: Build
shell: bash
working-directory: ${{runner.workspace}}/munin/build
run: cmake --build . --config $BUILD_TYPE
1 change: 1 addition & 0 deletions paradice/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -91,6 +91,7 @@ target_include_directories(paradice
${CMAKE_CURRENT_SOURCE_DIR}/include
)

message("*** ${Boost_program_options_FOUND}")
target_link_libraries(paradice
PUBLIC
KazDragon::terminalpp
Expand Down

0 comments on commit fc5ed2a

Please sign in to comment.