-
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.
Merge pull request #13 from pradal/temporal
Temporal
- Loading branch information
Showing
12 changed files
with
12,961 additions
and
136 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 |
---|---|---|
|
@@ -2,66 +2,16 @@ name: build_publish_anaconda | |
|
||
on: | ||
push: | ||
branches: [ master ] | ||
branches: | ||
- '**' | ||
tags: | ||
- 'v*' | ||
pull_request: | ||
branches: [ master ] | ||
|
||
jobs: | ||
build-and-publish: | ||
name: ${{ matrix.os }}, Python 3.${{ matrix.python-minor-version }} for conda deployment | ||
runs-on: ${{ matrix.os }} | ||
strategy: | ||
fail-fast: false | ||
max-parallel: 3 | ||
matrix: | ||
os: [ ubuntu-latest] | ||
python-minor-version: [9] | ||
isMaster: | ||
- ${{ github.ref == 'refs/heads/master' || startsWith(github.ref, 'refs/heads/dev') }} | ||
exclude: | ||
- isMaster: false | ||
os: ubuntu-latest | ||
python-minor-version: 7 | ||
- isMaster: false | ||
os: ubuntu-latest | ||
python-minor-version: 8 | ||
- isMaster: false | ||
os: macos-latest | ||
python-minor-version: 7 | ||
- isMaster: false | ||
os: macos-latest | ||
python-minor-version: 8 | ||
- isMaster: false | ||
os: macos-latest | ||
python-minor-version: 9 | ||
- isMaster: false | ||
os: windows-latest | ||
python-minor-version: 7 | ||
- isMaster: false | ||
os: windows-latest | ||
python-minor-version: 8 | ||
- isMaster: false | ||
os: windows-latest | ||
python-minor-version: 9 | ||
branches: | ||
- '**' | ||
|
||
steps: | ||
- name: Chekout | ||
uses: actions/checkout@v3 | ||
- name: Determine publish | ||
uses: haya14busa/action-cond@v1 | ||
id: publish | ||
with: | ||
cond: ${{ contains(github.ref, 'master') || startsWith(github.ref, 'refs/heads/v') }} | ||
if_true: 'true' | ||
if_false: 'false' | ||
- name: Build and Publish | ||
uses: openalea/[email protected] | ||
with: | ||
conda: conda | ||
mamba: true | ||
python: ${{ matrix.python-minor-version }} | ||
numpy: '20.0' | ||
channels: openalea3, conda-forge | ||
token: ${{ secrets.ANACONDA_TOKEN }} | ||
publish: ${{ steps.publish.outputs.value }} | ||
label: main | ||
jobs: | ||
build: | ||
uses: openalea/github-action-conda-build/.github/workflows/conda-package-build.yml@main | ||
secrets: | ||
anaconda_token: ${{ secrets.ANACONDA_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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,45 +1,103 @@ | ||
# Compiled source # | ||
################### | ||
*.com | ||
*.class | ||
*.dll | ||
*.exe | ||
*.o | ||
# {# pkglts, github | ||
# Byte-compiled / optimized / DLL files | ||
__pycache__/ | ||
*.py[cod] | ||
|
||
# pkglts files | ||
.pkglts/info.log* | ||
|
||
# Packages | ||
*.egg | ||
*.egg-info | ||
.eggs | ||
.Python | ||
*.pth | ||
dist/ | ||
build/ | ||
env/ | ||
downloads/ | ||
eggs/ | ||
parts/ | ||
bin/ | ||
var/ | ||
sdist/ | ||
develop-eggs/ | ||
.installed.cfg | ||
lib/ | ||
lib64/ | ||
|
||
# editors | ||
.idea/ | ||
|
||
# Vim files | ||
*.swp | ||
*.*~ | ||
|
||
# Mr Developer | ||
.mr.developer.cfg | ||
.project | ||
.pydevproject | ||
.settings | ||
|
||
|
||
# C extensions | ||
*.so | ||
*.dll | ||
*.dylib | ||
|
||
# Compiled Static libraries | ||
*.lai | ||
*.la | ||
*.a | ||
|
||
# Compiled Object files | ||
*.os | ||
|
||
# PyInstaller | ||
# Usually these files are written by a python script from a template | ||
# before PyInstaller builds the exe, so as to inject date/other infos into it. | ||
*.manifest | ||
*.spec | ||
|
||
# Packages # | ||
############ | ||
# it's better to unpack these files and commit the raw source | ||
# git has its own built in compression methods | ||
*.7z | ||
*.dmg | ||
*.gz | ||
*.iso | ||
*.jar | ||
*.rar | ||
*.tar | ||
*.zip | ||
|
||
# Logs and databases # | ||
###################### | ||
# Installer logs | ||
pip-log.txt | ||
pip-delete-this-directory.txt | ||
.amlog | ||
.sconsign.dblite | ||
|
||
# Translations | ||
*.mo | ||
*.pot | ||
|
||
# Django stuff: | ||
*.log | ||
*.sql | ||
*.sqlite | ||
|
||
# OS generated files # | ||
###################### | ||
# PyBuilder | ||
target/ | ||
|
||
# jupyter notebooks | ||
.ipynb_checkpoints/ | ||
|
||
# svn | ||
.svn | ||
.cache/ | ||
|
||
# coverage | ||
.coverage | ||
|
||
# sphinx autogen file | ||
doc/_dvlpt/ | ||
|
||
|
||
# #} | ||
|
||
# user custom filters | ||
|
||
# Notebook | ||
.ipynb_checkpoints/ | ||
|
||
# Mac | ||
.DS_Store | ||
.DS_Store? | ||
._* | ||
.Spotlight-V100 | ||
.Trashes | ||
ehthumbs.db | ||
Thumbs.db | ||
|
||
# tmp # | ||
####### | ||
*.pyc | ||
*~ | ||
|
||
./share/data/rsml | ||
src/RSML.egg-info | ||
# VS Code | ||
.vscode | ||
*.code-workspace |
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
Large diffs are not rendered by default.
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
Oops, something went wrong.