Skip to content

Commit a45d59d

Browse files
authored
Tweak behaviors of build and release CI workflows (#621)
1 parent 6e7df65 commit a45d59d

File tree

2 files changed

+5
-11
lines changed

2 files changed

+5
-11
lines changed

.github/workflows/build_workflow.yml

Lines changed: 4 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -25,14 +25,14 @@ jobs:
2525
- id: skip_check
2626
uses: fkirc/skip-duplicate-actions@master
2727
with:
28-
cancel_others: true
28+
cancel_others: false
2929
paths_ignore: '["**/README.md", "**/docs/**"]'
3030

3131
pre-commit-hooks:
3232
needs: check-jobs-to-skip
3333
if: ${{ needs.check-jobs-to-skip.outputs.should_skip != 'true' }}
3434
runs-on: ubuntu-latest
35-
timeout-minutes: 2
35+
timeout-minutes: 5
3636
steps:
3737
- name: Checkout Code Repository
3838
uses: actions/checkout@v3
@@ -73,10 +73,8 @@ jobs:
7373
uses: conda-incubator/setup-miniconda@v2
7474
with:
7575
activate-environment: zppy_dev
76-
miniforge-variant: Mambaforge
76+
miniforge-variant: Miniforge3
7777
miniforge-version: latest
78-
use-mamba: true
79-
mamba-version: "*"
8078
environment-file: conda/dev.yml
8179
channel-priority: strict
8280
auto-update-conda: true
@@ -123,10 +121,8 @@ jobs:
123121
uses: conda-incubator/setup-miniconda@v2
124122
with:
125123
activate-environment: zppy_dev
126-
miniforge-variant: Mambaforge
124+
miniforge-variant: Miniforge3
127125
miniforge-version: latest
128-
use-mamba: true
129-
mamba-version: "*"
130126
environment-file: conda/dev.yml
131127
channel-priority: strict
132128
auto-update-conda: true

.github/workflows/release_workflow.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,10 +35,8 @@ jobs:
3535
uses: conda-incubator/setup-miniconda@v2
3636
with:
3737
activate-environment: zppy_dev
38-
miniforge-variant: Mambaforge
38+
miniforge-variant: Miniforge3
3939
miniforge-version: latest
40-
use-mamba: true
41-
mamba-version: "*"
4240
environment-file: conda/dev.yml
4341
channel-priority: strict
4442
auto-update-conda: true

0 commit comments

Comments
 (0)