Skip to content

Commit 4d075a8

Browse files
Merge pull request #242 from NCAS-CMS/tlc1
force mamba 2 and get rid of artifacts
2 parents 5177b06 + 412607e commit 4d075a8

6 files changed

+21
-17
lines changed

.github/workflows/build-and-deploy-on-pypi.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
name: Build and publish PyActiveStorage on PyPi
1414
runs-on: ubuntu-latest
1515
steps:
16-
- uses: actions/checkout@v3
16+
- uses: actions/checkout@v4
1717
with:
1818
fetch-depth: 0
1919
- name: Set up Python 3.13

.github/workflows/create-condalock-file.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
name: Create and verify conda lock file for latest Python
2121
runs-on: 'ubuntu-latest'
2222
steps:
23-
- uses: actions/checkout@v3
23+
- uses: actions/checkout@v4
2424
with:
2525
fetch-depth: 0
2626
- uses: conda-incubator/setup-miniconda@v3

.github/workflows/install-from-condalock-file.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
fail-fast: false
2626
name: Linux Python ${{ matrix.python-version }}
2727
steps:
28-
- uses: actions/checkout@v3
28+
- uses: actions/checkout@v4
2929
with:
3030
fetch-depth: 0
3131
- uses: conda-incubator/setup-miniconda@v3

.github/workflows/run-test-push.yml

+3-2
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
fail-fast: false
1818
name: Linux Python ${{ matrix.python-version }}
1919
steps:
20-
- uses: actions/checkout@v3
20+
- uses: actions/checkout@v4
2121
with:
2222
fetch-depth: 0
2323
- uses: conda-incubator/setup-miniconda@v3
@@ -27,6 +27,7 @@ jobs:
2727
python-version: ${{ matrix.python-version }}
2828
miniforge-version: "latest"
2929
use-mamba: true
30+
mamba-version: "2.0.5" # https://github.com/conda-incubator/setup-miniconda/issues/392
3031
- run: conda --version
3132
- run: python -V
3233
- name: Install development version of NCAS-CMS/Pyfive:wacasoft
@@ -39,4 +40,4 @@ jobs:
3940
- run: pip install -e .
4041
- run: conda list
4142
- run: pytest -n 2 --junitxml=report-1.xml
42-
- uses: codecov/codecov-action@v3
43+
- uses: codecov/codecov-action@v5

.github/workflows/run-tests.yml

+4-2
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
fail-fast: false
2323
name: Linux Python ${{ matrix.python-version }}
2424
steps:
25-
- uses: actions/checkout@v3
25+
- uses: actions/checkout@v4
2626
with:
2727
fetch-depth: 0
2828
- uses: conda-incubator/setup-miniconda@v3
@@ -32,6 +32,7 @@ jobs:
3232
python-version: ${{ matrix.python-version }}
3333
miniforge-version: "latest"
3434
use-mamba: true
35+
mamba-version: "2.0.5" # https://github.com/conda-incubator/setup-miniconda/issues/392
3536
- run: conda --version
3637
- run: python -V
3738
- name: Install development version of NCAS-CMS/Pyfive:wacasoft
@@ -54,7 +55,7 @@ jobs:
5455
fail-fast: false
5556
name: OSX Python ${{ matrix.python-version }}
5657
steps:
57-
- uses: actions/checkout@v3
58+
- uses: actions/checkout@v4
5859
with:
5960
fetch-depth: 0
6061
- uses: conda-incubator/setup-miniconda@v3
@@ -64,6 +65,7 @@ jobs:
6465
python-version: ${{ matrix.python-version }}
6566
miniforge-version: "latest"
6667
use-mamba: true
68+
mamba-version: "2.0.5" # https://github.com/conda-incubator/setup-miniconda/issues/392
6769
- run: conda --version
6870
- run: python -V
6971
- name: Install development version of NCAS-CMS/Pyfive:wacasoft

.github/workflows/test_s3_minio.yml

+11-10
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,7 @@ on:
66
push:
77
branches:
88
- main # keep this at all times
9-
# - pyfive # reinstate
10-
- new_api_pyfive
9+
- pyfive
1110
pull_request:
1211
schedule:
1312
- cron: '0 0 * * *' # nightly
@@ -26,14 +25,15 @@ jobs:
2625
fail-fast: false
2726
name: Linux Python ${{ matrix.python-version }}
2827
steps:
29-
- uses: actions/checkout@v3
28+
- uses: actions/checkout@v4
3029
with:
3130
fetch-depth: 0
3231
- uses: conda-incubator/setup-miniconda@v3
3332
with:
3433
python-version: ${{ matrix.python-version }}
3534
miniforge-version: "latest"
3635
use-mamba: true
36+
mamba-version: "2.0.5" # https://github.com/conda-incubator/setup-miniconda/issues/392
3737
- name: Get conda and Python versions
3838
run: |
3939
conda --version
@@ -57,6 +57,7 @@ jobs:
5757
python-version: ${{ matrix.python-version }}
5858
miniforge-version: "latest"
5959
use-mamba: true
60+
mamba-version: "2.0.5" # https://github.com/conda-incubator/setup-miniconda/issues/392
6061
- name: Install development version of NCAS-CMS/Pyfive:wacasoft
6162
run: |
6263
cd ..
@@ -88,10 +89,10 @@ jobs:
8889
- name: Stop minio object storage
8990
run: tests/s3_exploratory/minio_scripts/minio-stop
9091
if: always()
91-
- name: Upload HTML report artifact
92-
uses: actions/upload-artifact@v4
93-
with:
94-
name: html-report
95-
path: test-reports/
96-
overwrite: true
97-
if: always()
92+
#- name: Upload HTML report artifact
93+
# uses: actions/upload-artifact@v4
94+
# with:
95+
# name: html-report
96+
# path: test-reports/
97+
# overwrite: true
98+
# if: always()

0 commit comments

Comments
 (0)