mirror of
https://github.com/TREX-CoE/qmckl.git
synced 2025-04-19 07:00:10 +02:00
Merge branch 'master' into master
This commit is contained in:
commit
7fdc1e8346
31
.github/workflows/test-build.yml
vendored
31
.github/workflows/test-build.yml
vendored
@ -14,20 +14,33 @@ jobs:
|
|||||||
|
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v2
|
||||||
- name: install dependencies
|
- name: Install dependencies
|
||||||
run: sudo apt-get install emacs autoconf
|
run: sudo apt-get install emacs autoconf libhdf5-dev
|
||||||
- name: Run test
|
- name: Install trexio
|
||||||
|
run: |
|
||||||
|
wget https://github.com/TREX-CoE/trexio/releases/download/v1.0/trexio-1.0.0.tar.gz
|
||||||
|
tar -zxf trexio-1.0.0.tar.gz
|
||||||
|
cd trexio-1.0.0
|
||||||
|
./configure --prefix=/usr
|
||||||
|
make -j 8
|
||||||
|
sudo make install
|
||||||
|
- name: Build
|
||||||
run: |
|
run: |
|
||||||
./autogen.sh
|
./autogen.sh
|
||||||
QMCKL_DEVEL=1 ./configure --enable-silent-rules --enable-maintainer-mode --enable-debug
|
QMCKL_DEVEL=1 ./configure --enable-silent-rules --enable-maintainer-mode --enable-debug
|
||||||
make -j 8
|
make -j 8
|
||||||
|
- name: Run test
|
||||||
|
run: |
|
||||||
make -j check
|
make -j check
|
||||||
make distcheck
|
ldd tests/test_qmckl_ao
|
||||||
- name: Archive test log file
|
- name: Archive test log file
|
||||||
uses: actions/upload-artifact@v2
|
uses: actions/upload-artifact@v2
|
||||||
with:
|
with:
|
||||||
name: test-suite.log
|
name: test-report
|
||||||
path: test-suite.log
|
path: test-suite.log
|
||||||
|
- name: Dist test
|
||||||
|
run: |
|
||||||
|
make distcheck
|
||||||
|
|
||||||
# x86_macos:
|
# x86_macos:
|
||||||
#
|
#
|
||||||
@ -41,6 +54,14 @@ jobs:
|
|||||||
# brew install gfortran-10
|
# brew install gfortran-10
|
||||||
# brew install emacs
|
# brew install emacs
|
||||||
# brew install autoconf automake libtool
|
# brew install autoconf automake libtool
|
||||||
|
# - name: install trexio
|
||||||
|
# run: |
|
||||||
|
# wget https://github.com/TREX-CoE/trexio/releases/download/v1.0/trexio-1.0.0.tar.gz
|
||||||
|
# tar -zxf trexio-1.0.0.tar.gz
|
||||||
|
# cd trexio-1.0.0
|
||||||
|
# ./configure
|
||||||
|
# make -j 8
|
||||||
|
# sudo make install
|
||||||
# - name: Run test
|
# - name: Run test
|
||||||
# run: |
|
# run: |
|
||||||
# ./autogen.sh
|
# ./autogen.sh
|
||||||
|
Loading…
x
Reference in New Issue
Block a user