TeNeS 2.1.1 #247
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: main | |
on: [push] | |
jobs: | |
apps: | |
runs-on: ubuntu-22.04 | |
strategy: | |
matrix: | |
app: [tenes, komega, hphi, mvmc, openmx, dsqss, espresso, respack, lammps, py2dmat, physbo] | |
fail-fast: false | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Setup Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: "3.10" | |
- name: apt | |
run: | | |
sudo apt-get update | |
sudo apt-get -y install openmpi-bin libopenmpi-dev libscalapack-openmpi-dev libfftw3-dev | |
if [ ${{ matrix.app }} = "respack" ]; then | |
sudo apt-get -y install quantum-espresso | |
fi | |
- name: pip | |
run: | | |
python3 -m pip install -U pip | |
python3 -m pip install numpy scipy toml setuptools typing-extensions | |
- name: setup | |
run: sh setup/setup.sh | |
- name: test | |
run: sh .github/scripts/test.sh ${{matrix.app}} |