-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- update makefile - automatically build and deploy manual - update docs Reviewed-on: https://codeberg.org/meisam/slabcc/pulls/11
- Loading branch information
meisam
committed
Jan 22, 2023
1 parent
43f2ec0
commit b9f95ca
Showing
32 changed files
with
647 additions
and
2,473 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
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,14 @@ | ||
# build artifacts | ||
bin/slabcc | ||
bin/slabcc_obj | ||
bin/nlopt | ||
|
||
# ci artifacts | ||
utils/.env | ||
|
||
# slabcc output | ||
slabcc.log | ||
slabcc.out | ||
|
||
# dev tools | ||
.vscode |
This file was deleted.
Oops, something went wrong.
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,26 @@ | ||
matrix: | ||
TOOLCHAIN: | ||
- ubuntu:16.04 gcc-5 g++-5 libopenblas-dev fftw3-dev | ||
- ubuntu:18.04 gcc-8 g++-8 libopenblas-dev fftw3-dev | ||
- ubuntu:22.04 gcc-9 g++-9 libopenblas-dev fftw3-dev | ||
- ubuntu:22.04 gcc-11 g++-11 libopenblas-dev fftw3-dev | ||
- almalinux:8.7 gcc gcc-c++:g++ gcc-gfortran blas-devel lapack-devel fftw-devel | ||
- opensuse/leap:15.4 gcc10:gcc-10 gcc10-c++:g++-10 blas-devel lapack-devel fftw3-devel | ||
|
||
pipeline: | ||
build_minimal: | ||
image: ${TOOLCHAIN%% *} | ||
environment: | ||
- VERBOSE=1 | ||
commands: | ||
- ./utils/install_pkgs.sh && . ./.env | ||
- cd ./bin/ && make --trace | ||
- ldd ./slabcc | ||
- ./slabcc -v | ||
|
||
when: | ||
path: | ||
include: [ 'bin/*', 'src/**', '.woodpecker/.build_slabcc.yml', 'utils/install_pkgs.sh' ] | ||
|
||
depends_on: | ||
- validate |
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,22 @@ | ||
pipeline: | ||
|
||
build: | ||
image: python:3 | ||
environment: | ||
- STAGE_PATH=docs/deploy | ||
commands: | ||
- pip3 install --no-cache-dir --requirement=docs/requirements.txt | ||
- ./utils/build_pages.sh | ||
|
||
deploy: | ||
image: quay.io/meisam/charliecloud:latest ## todo: replace with ci tools container | ||
environment: | ||
- STAGE_PATH=docs/deploy | ||
commands: | ||
- ./utils/deploy_pages.sh #--verbose | ||
secrets: [ pages_pass ] | ||
|
||
when: | ||
path: | ||
include: [ 'docs/*', 'utils/deploy_pages.sh', '.woodpecker/.update_docs.yml' ] | ||
branch: master |
Oops, something went wrong.