Skip to content

Commit

Permalink
workflow for checking compilation
Browse files Browse the repository at this point in the history
  • Loading branch information
AbdAmmar committed Nov 15, 2024
1 parent 069cb76 commit ea23222
Showing 1 changed file with 37 additions and 0 deletions.
37 changes: 37 additions & 0 deletions .github/workflows/compilation.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
name: QuAcK Compilation

on:
push:
branches:
- ci
pull_request:
branches:
- master


jobs:

configuration:
runs-on: ubuntu-20.04
name: Dependencies

steps:
- name: install dependencies
run: |
sudo apt install gfortran gcc liblapack-dev libblas-dev wget python3 make m4 pkg-config
compilation:
name: Compilation
runs-on: ubuntu-20.04

steps:
- uses: actions/checkout@v3
- name: Configuration
run: |
./configure -i ninja || :
- name: Compilation
run: |
bash -c "source quack.rc ; cd src ; exec make"

0 comments on commit ea23222

Please sign in to comment.