mirror of
https://github.com/TREX-CoE/qmckl.git
synced 2024-11-19 12:32:40 +01:00
29 lines
608 B
YAML
29 lines
608 B
YAML
name: test-build
|
|
|
|
on:
|
|
push:
|
|
branches: [ master ]
|
|
pull_request:
|
|
branches: [ master ]
|
|
|
|
jobs:
|
|
x86_ubuntu:
|
|
|
|
runs-on: ubuntu-latest
|
|
name: x86 Ubuntu latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- name: install dependencies
|
|
run: sudo apt-get install emacs autoconf
|
|
- name: ./autogen.sh
|
|
run: ./autogen.sh
|
|
- name: ./configure
|
|
run: QMCKL_DEVEL=1 ./configure --enable-silent-rules --enable-maintainer-mode --enable-debug
|
|
- name: make
|
|
run: make -j 8
|
|
- name: make check
|
|
run: make -j check
|
|
- name: make distcheck
|
|
run: make distcheck
|