mirror of
https://github.com/TREX-CoE/Sherman-Morrison.git
synced 2024-12-26 06:15:08 +01:00
Added back compilation GitHub action
This commit is contained in:
parent
8293bd090c
commit
f1f6f20f5c
33
.github/workflows/random_generator_compile.yml
vendored
Normal file
33
.github/workflows/random_generator_compile.yml
vendored
Normal file
@ -0,0 +1,33 @@
|
||||
name: Compiles
|
||||
|
||||
on:
|
||||
push:
|
||||
branches: [ "main", "dev" ]
|
||||
pull_request:
|
||||
branches: [ "main", "dev" ]
|
||||
|
||||
env:
|
||||
BUILD_TYPE: Release
|
||||
|
||||
jobs:
|
||||
build:
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
|
||||
- name: Fetch dependencies
|
||||
run: |
|
||||
sudo apt-get update
|
||||
sudo apt-get install -yq g++-10 cmake libomp-dev liblapacke-dev libhdf5-dev libblas-dev libopenblas-dev
|
||||
|
||||
|
||||
- name: Configure CMake
|
||||
run: |
|
||||
cmake -B ${{github.workspace}}/random_generator/build ${{github.workspace}}/random_generator \
|
||||
-DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}} -DCMAKE_CXX_COMPILER=g++-10 -DCMAKE_C_COMPILER=gcc-10
|
||||
|
||||
- name: Build
|
||||
# Build your program with the given configuration
|
||||
run: |
|
||||
cmake --build ${{github.workspace}}/random_generator/build --config ${{env.BUILD_TYPE}}
|
Loading…
Reference in New Issue
Block a user