-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add hints for NetCDFcxx not found error; fix typos (#29)
- Loading branch information
1 parent
17244dc
commit 6490976
Showing
14 changed files
with
101 additions
and
33 deletions.
There are no files selected for viewing
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
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,56 @@ | ||
## Checks the code logic, style and more | ||
# -*- coding: utf-8 -*- | ||
# Copyright (C) 2023 Benjamin Thomas Schwertfeger | ||
# Github: https://github.com/btschwertfeger | ||
# | ||
# Workflow to apply pre-commit, build, test and upload the docker | ||
# image(s). | ||
|
||
name: CI/CD | ||
|
||
on: | ||
push: | ||
branches: | ||
- "**" | ||
|
||
concurrency: | ||
group: CICD-${{ github.ref }} | ||
cancel-in-progress: true | ||
|
||
jobs: | ||
## Run the pre-commit content | ||
Pre-Commit: | ||
uses: ./.github/workflows/_pre_commit.yaml | ||
|
||
## Build the BiasAdjustCXX command-line tool | ||
## | ||
Build: | ||
needs: [Pre-Commit] | ||
uses: ./.github/workflows/_build.yaml | ||
|
||
## Build the documentation | ||
## | ||
Build-Doc: | ||
needs: [Pre-Commit] | ||
uses: ./.github/workflows/_build_doc.yaml | ||
with: | ||
os: "ubuntu-latest" | ||
python-version: "3.11" | ||
|
||
## Build the test suite and run the unit tests | ||
## | ||
Test: | ||
needs: [Pre-Commit] | ||
uses: ./.github/workflows/_test.yaml | ||
|
||
## Create and upload a docker image | ||
## | ||
Docker: | ||
if: success() && github.ref == 'refs/heads/dev' | ||
needs: [Build, Test] | ||
uses: ./.github/workflows/_build_docker.yaml | ||
with: | ||
TAG: ${{ github.ref_name }} | ||
secrets: | ||
DOCKERHUB_USERNAME: ${{ secrets.DOCKERHUB_USERNAME }} | ||
DOCKERHUB_TOKEN: ${{ secrets.DOCKERHUB_TOKEN }} |
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 |
---|---|---|
|
@@ -36,6 +36,7 @@ | |
.ipynb_checkpoints | ||
build/ | ||
output/ | ||
.vscode/ | ||
*tmp* | ||
qdm_result.nc | ||
del/ | ||
|
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
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