-
Notifications
You must be signed in to change notification settings - Fork 26
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
101 changed files
with
3,862 additions
and
21,463 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,77 @@ | ||
name: deploy | ||
|
||
on: | ||
push: | ||
branches: | ||
- master | ||
- develop | ||
- gh_actions # test branch | ||
- '!gh-pages' | ||
tags: '*' | ||
|
||
jobs: | ||
deploy: | ||
runs-on: ubuntu-20.04 | ||
steps: | ||
- name: Inject slug/short variables | ||
uses: rlespinasse/[email protected] | ||
|
||
- name: Checkout | ||
uses: actions/checkout@v2 | ||
with: | ||
path: main | ||
|
||
- name: Checkout gh-pages | ||
uses: actions/checkout@v2 | ||
with: | ||
ref: gh-pages | ||
path: gh-pages | ||
|
||
- name: Set up Python | ||
uses: actions/setup-python@v1 | ||
with: | ||
python-version: 3.8 | ||
|
||
- name: Install dependencies | ||
run: | | ||
python -m pip install --upgrade pip | ||
pip install sphinx | ||
- name: Build | ||
run: | | ||
cd ${GITHUB_WORKSPACE}/main/ | ||
cmake -E make_directory build | ||
cd build | ||
cmake -DDocument=ON -DENABLE_MPI=OFF -DENABLE_SCALAPACK=OFF ../ | ||
make doc-ja-html doc-en-html tutorial-en-html | ||
- name: Deploy Configuration | ||
run: | | ||
mkdir ~/.ssh | ||
ssh-keyscan -t rsa github.com >> ~/.ssh/known_hosts | ||
echo "${{ secrets.GH_ACTIONS_DEPLOY_KEY }}" > ~/.ssh/id_rsa | ||
chmod 400 ~/.ssh/id_rsa | ||
- name: Push | ||
env: | ||
GIT_USER: "HPhi Developers" | ||
GIT_EMAIL: "[email protected]" | ||
TARGET_NAME: ${{ env.GITHUB_REF_SLUG }} | ||
run: | | ||
cd ${GITHUB_WORKSPACE} | ||
for lang in ja en tutorial/en; do | ||
rm -rf "gh-pages/manual/${TARGET_NAME}/${lang}" | ||
mkdir -p "gh-pages/manual/${TARGET_NAME}/${lang}" | ||
cp -r "main/build/doc/${lang}/source/html" "gh-pages/manual/${TARGET_NAME}/${lang}" | ||
done | ||
cd gh-pages | ||
git config --local user.name "${GIT_USER}" | ||
git config --local user.email "${GIT_EMAIL}" | ||
git remote set-url origin [email protected]:${GITHUB_REPOSITORY}.git | ||
git add manual | ||
if git commit -m "Deploy docs to ${TARGET_NAME} by GitHub Actions triggered by ${GITHUB_SHA}" | ||
then | ||
git push origin gh-pages | ||
else | ||
echo "Nothing to deploy" | ||
fi |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,63 @@ | ||
name: CI | ||
|
||
on: [push] | ||
|
||
jobs: | ||
ctest: | ||
runs-on: ${{ matrix.os }} | ||
|
||
strategy: | ||
matrix: | ||
os: [ubuntu-20.04] | ||
mpisize: [1, 4, 16] | ||
ompsize: [1, 3] | ||
include: | ||
- os: macos-10.15 | ||
mpisize: 1 | ||
ompsize: 1 | ||
fail-fast: false | ||
|
||
env: | ||
MPIRUN: "mpiexec --oversubscribe -np ${{ matrix.mpisize }}" | ||
OMP_NUM_THREADS: ${{ matrix.ompsize }} | ||
|
||
steps: | ||
- uses: actions/checkout@v2 | ||
|
||
- name: apt | ||
if: ${{ runner.os == 'Linux' }} | ||
run: | | ||
sudo apt update | ||
sudo apt install liblapack-dev openmpi-bin libopenmpi-dev libscalapack-openmpi-dev | ||
- name: brew | ||
if: ${{ runner.os == 'macOS' }} | ||
run: | | ||
brew install openmpi scalapack | ||
- name: pip | ||
run: | | ||
python -m pip install numpy | ||
python3 -m pip install numpy | ||
- name: make workspace | ||
run: cmake -E make_directory ${{runner.workspace}}/build | ||
|
||
- name: cmake | ||
working-directory: ${{runner.workspace}}/build | ||
shell: bash | ||
run: | | ||
if [ ${{ runner.os }} = "macOS" ] ; then | ||
export FC=gfortran-11 | ||
fi | ||
cmake -DCMAKE_VERBOSE_MAKEFILE=ON $GITHUB_WORKSPACE | ||
- name: build | ||
working-directory: ${{runner.workspace}}/build | ||
shell: bash | ||
run: cmake --build ./ -j4 | ||
|
||
- name: ctest | ||
working-directory: ${{runner.workspace}}/build | ||
shell: bash | ||
run: ctest -V |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
[submodule "src/StdFace/submodule"] | ||
path = src/StdFace/submodule | ||
[submodule "src/StdFace"] | ||
path = src/StdFace | ||
url = https://github.com/issp-center-dev/StdFace |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Binary file not shown.
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
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
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
Oops, something went wrong.