Skip to content

Commit

Permalink
Merge pull request #399 from ACCESS-NRI/395-deployment-fix
Browse files Browse the repository at this point in the history
Conda Deployment Fix
  • Loading branch information
CodeGat committed Jan 5, 2024
2 parents be0841d + fc7e296 commit ca0c825
Show file tree
Hide file tree
Showing 2 changed files with 31 additions and 6 deletions.
29 changes: 27 additions & 2 deletions .github/workflows/CI.yml
@@ -1,7 +1,7 @@
# Run CI tests
name: CI

# Controls when the action will run.
# Controls when the action will run.
on:
# Triggers the workflow on push or pull request events but only for the master branch
push:
Expand All @@ -14,6 +14,31 @@ on:

# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
conda-build:
name: Conda Build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4

- name: Setup conda environment
uses: conda-incubator/setup-miniconda@v2
with:
miniconda-version: "latest"
python-version: 3.11
environment-file: conda/environment.yml
auto-update-conda: false
auto-activate-base: false
show-channel-urls: true

- name: Run conda build
shell: bash -el {0}
# For the build, these environment variables would usually be set based on repo tags,
# but they can be these defaults instead since we don't use the build
env:
GIT_DESCRIBE_TAG: test
GIT_DESCRIBE_NUMBER: 0
run: conda build . --no-anaconda-upload

build:
runs-on: ubuntu-latest

Expand All @@ -26,7 +51,7 @@ jobs:
steps:

# Checks-out repository code
- name: Checkout code
- name: Checkout code
uses: actions/checkout@v2

- name: Set up Python ${{ matrix.python-version }}
Expand Down
8 changes: 4 additions & 4 deletions conda/meta.yaml
Expand Up @@ -21,11 +21,11 @@ source:

requirements:
build:
- python
- python <=3.11
- pbr
- setuptools
run:
- python
- python <=3.11
- f90nml >=0.16
- yamanifest >=0.3.4
- PyYAML
Expand All @@ -37,8 +37,8 @@ requirements:
# extra for the pypi package
- pyOpenSSL >=0.14
- cryptography>=1.3.4
- GitPython >= 3.1.40
- ruamel.yaml >= 0.18.5
- GitPython >=3.1.40
- ruamel.yaml >=0.18.5

test:
imports:
Expand Down

0 comments on commit ca0c825

Please sign in to comment.