Skip to content

Commit

Permalink
package_build workflow: optionally skip installing ska_helpers
Browse files Browse the repository at this point in the history
  • Loading branch information
javierggt committed Dec 6, 2024
1 parent d4af433 commit c3994aa
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 3 deletions.
7 changes: 6 additions & 1 deletion .github/workflows/package_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,11 @@ on:
required: false
type: string
default: test
install_ska_helpers:
description: Install ska_helpers and testr
required: false
type: boolean
default: true
secrets:
CONDA_PASSWORD:
required: true
Expand Down Expand Up @@ -145,7 +150,7 @@ jobs:
run:
conda env update -n conda-build -f ./skare3/build-environment.yml
- name: Install ska_helpers
if: ${{ ((steps.conda_cache.outputs.cache-hit != 'true') && (steps.conda_cache_win.outputs.cache-hit != 'true')) && ((matrix.os == 'ubuntu-latest') || !inputs.noarch) }}
if: ${{ inputs.install_ska_helpers && ((steps.conda_cache.outputs.cache-hit != 'true') && (steps.conda_cache_win.outputs.cache-hit != 'true')) && ((matrix.os == 'ubuntu-latest') || !inputs.noarch) }}
run: |
conda search ska_helpers
err=$?
Expand Down
2 changes: 1 addition & 1 deletion pkg_defs/ska3-core-latest/meta.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package:
name: ska3-core-latest
version: 2024.1
version: 2025.0

requirements:
run:
Expand Down
2 changes: 1 addition & 1 deletion pkg_defs/ska3-flight-latest/meta.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package:
name: ska3-flight-latest
version: 2024.11
version: 2025.0

build:
noarch: generic
Expand Down

0 comments on commit c3994aa

Please sign in to comment.