-
Notifications
You must be signed in to change notification settings - Fork 251
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 #1633 from zm711/remove-cron
Stop Cron Job for Creating Conda Env
- Loading branch information
Showing
1 changed file
with
51 additions
and
51 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 |
---|---|---|
|
@@ -10,57 +10,57 @@ on: | |
|
||
jobs: | ||
|
||
create-conda-env-cache-if-missing: | ||
name: Caching conda env | ||
runs-on: "ubuntu-latest" | ||
strategy: | ||
fail-fast: true | ||
defaults: | ||
# by default run in bash mode (required for conda usage) | ||
run: | ||
shell: bash -l {0} | ||
steps: | ||
- uses: actions/checkout@v3 | ||
|
||
- name: Get current year-month | ||
id: date | ||
run: | | ||
echo "date=$(date +'%Y-%m')" >> $GITHUB_OUTPUT | ||
- name: Get current dependencies hash | ||
id: dependencies | ||
run: | | ||
echo "hash=${{hashFiles('**/pyproject.toml', '**/environment_testing.yml')}}" >> $GITHUB_OUTPUT | ||
- uses: actions/cache@v3 | ||
# the cache for python package is reset: | ||
# * every month | ||
# * when package dependencies change | ||
id: cache-conda-env | ||
with: | ||
path: /usr/share/miniconda/envs/neo-test-env | ||
key: ${{ runner.os }}-conda-env-${{ steps.dependencies.outputs.hash }}-${{ steps.date.outputs.date }} | ||
|
||
- name: Cache found? | ||
run: echo "Cache-hit == ${{steps.cache-conda-env.outputs.cache-hit == 'true'}}" | ||
|
||
# activate environment if not restored from cache | ||
- uses: conda-incubator/[email protected] | ||
if: steps.cache-conda-env.outputs.cache-hit != 'true' | ||
with: | ||
activate-environment: neo-test-env | ||
environment-file: environment_testing.yml | ||
python-version: 3.9 | ||
|
||
- name: Create the conda environment to be cached | ||
if: steps.cache-conda-env.outputs.cache-hit != 'true' | ||
# create conda env, configure git and install pip, neo and test dependencies from master | ||
# for PRs that change dependencies, this environment will be updated in the test workflow | ||
run: | | ||
git config --global user.email "neo_ci@fake_mail.com" | ||
git config --global user.name "neo CI" | ||
python -m pip install -U pip # Official recommended way | ||
pip install --upgrade -e .[test] | ||
# create-conda-env-cache-if-missing: | ||
# name: Caching conda env | ||
# runs-on: "ubuntu-latest" | ||
# strategy: | ||
# fail-fast: true | ||
# defaults: | ||
# # by default run in bash mode (required for conda usage) | ||
# run: | ||
# shell: bash -l {0} | ||
# steps: | ||
# - uses: actions/checkout@v3 | ||
|
||
# - name: Get current year-month | ||
# id: date | ||
# run: | | ||
# echo "date=$(date +'%Y-%m')" >> $GITHUB_OUTPUT | ||
|
||
# - name: Get current dependencies hash | ||
# id: dependencies | ||
# run: | | ||
# echo "hash=${{hashFiles('**/pyproject.toml', '**/environment_testing.yml')}}" >> $GITHUB_OUTPUT | ||
|
||
# - uses: actions/cache@v3 | ||
# # the cache for python package is reset: | ||
# # * every month | ||
# # * when package dependencies change | ||
# id: cache-conda-env | ||
# with: | ||
# path: /usr/share/miniconda/envs/neo-test-env | ||
# key: ${{ runner.os }}-conda-env-${{ steps.dependencies.outputs.hash }}-${{ steps.date.outputs.date }} | ||
|
||
# - name: Cache found? | ||
# run: echo "Cache-hit == ${{steps.cache-conda-env.outputs.cache-hit == 'true'}}" | ||
|
||
# # activate environment if not restored from cache | ||
# - uses: conda-incubator/[email protected] | ||
# if: steps.cache-conda-env.outputs.cache-hit != 'true' | ||
# with: | ||
# activate-environment: neo-test-env | ||
# environment-file: environment_testing.yml | ||
# python-version: 3.9 | ||
|
||
# - name: Create the conda environment to be cached | ||
# if: steps.cache-conda-env.outputs.cache-hit != 'true' | ||
# # create conda env, configure git and install pip, neo and test dependencies from master | ||
# # for PRs that change dependencies, this environment will be updated in the test workflow | ||
# run: | | ||
# git config --global user.email "neo_ci@fake_mail.com" | ||
# git config --global user.name "neo CI" | ||
# python -m pip install -U pip # Official recommended way | ||
# pip install --upgrade -e .[test] | ||
|
||
create-data-cache-if-missing: | ||
name: Caching data env | ||
|