mirror of
https://github.com/TREX-CoE/qmckl.git
synced 2024-11-19 12:32:40 +01:00
43 lines
917 B
YAML
43 lines
917 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
|
|
QMCKL_DEVEL=1 ./configure --enable-silent-rules --enable-maintainer-mode --enable-debug
|
|
make -j 8
|
|
make -j check
|
|
make distcheck
|
|
|
|
x86_macos:
|
|
|
|
runs-on: macos-latest
|
|
name: x86 MacOS latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- name: install dependencies
|
|
run: |
|
|
brew install emacs
|
|
brew install autoconf automake libtool
|
|
- name: |
|
|
./autogen.sh
|
|
QMCKL_DEVEL=1 ./configure --enable-silent-rules --enable-maintainer-mode --enable-debug
|
|
make -j 8
|
|
make -j check
|
|
make distcheck
|