Skip to content

Commit

Permalink
Merge pull request #63 from TimSiebert1/workflows
Browse files Browse the repository at this point in the history
Small workflow for automated testing
  • Loading branch information
awalther1 authored Oct 30, 2024
2 parents 5ab0657 + 41b8a9a commit 7fdc472
Show file tree
Hide file tree
Showing 3 changed files with 45 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,4 +47,6 @@ jobs:
- name: Build
# Build your program with the given configuration. Note that --config is needed because the default Windows generator is a multi-config generator (Visual Studio generator).
run: cmake --build ${{ steps.strings.outputs.build-output-dir }} --config ${{ matrix.build_type }}
run: cmake --build ${{ steps.strings.outputs.build-output-dir }} --config ${{ matrix.build_type }}


42 changes: 42 additions & 0 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@

name: Run Tests
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4

- name: Configure CMake ADOL-C
run: >
cmake
-DCMAKE_CXX_COMPILER=g++
-DCMAKE_C_COMPILER=gcc
-DCMAKE_BUILD_TYPE=Release
-S ${{ github.workspace }}
-DCMAKE_INSTALL_PREFIX=${{ github.workspace }}
- name: Build ADOLC
run: |
make
make install
- name: Install Boost
shell: bash
run: |
sudo apt-get install libboost-all-dev
- name: Build and Run Boost-Test
shell: bash
run: |
cd ADOL-C/boost-test
mkdir build && cd build
cmake ../ -DADOLC_BASE=${{ github.workspace }}
make
./boost-test-adolc
File renamed without changes.

0 comments on commit 7fdc472

Please sign in to comment.