Skip to content

Commit 96280cd

Browse files
committed
Updated CI config.
1 parent 9a49832 commit 96280cd

File tree

6 files changed

+12
-11
lines changed

6 files changed

+12
-11
lines changed

.github/actions_build_conda.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,9 @@ conda install conda-build
1515
conda install anaconda-client
1616
conda info -a
1717

18-
conda config --add channels domdfcoding || exit 1
1918
conda config --add channels conda-forge || exit 1
19+
conda config --add channels domdfcoding || exit 1
2020

21-
conda build conda -c domdfcoding -c conda-forge --output-folder conda/dist --skip-existing --numpy 1.16
21+
conda build conda -c conda-forge -c domdfcoding --output-folder conda/dist --skip-existing
2222

2323
exit 0

.github/workflows/conda_ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,8 @@ jobs:
3131
$CONDA/bin/conda update -q conda
3232
$CONDA/bin/conda install conda-build
3333
34-
$CONDA/bin/conda config --add channels domdfcoding
3534
$CONDA/bin/conda config --add channels conda-forge
35+
$CONDA/bin/conda config --add channels domdfcoding
3636
3737
- name: "Build and install package"
3838
run: |

.github/workflows/mypy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ on:
99

1010
jobs:
1111
Run:
12-
name: "mypy"
12+
name: "mypy / ${{ matrix.os }}"
1313
runs-on: ${{ matrix.os }}
1414

1515
strategy:

.github/workflows/python_ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ on:
99

1010
jobs:
1111
tests:
12-
name: "Python ${{ matrix.config.python-version }}"
12+
name: "windows-2019 / Python ${{ matrix.config.python-version }}"
1313
runs-on: "windows-2019"
1414
continue-on-error: ${{ matrix.config.experimental }}
1515
env:

.github/workflows/python_ci_linux.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,11 @@ on:
99

1010
jobs:
1111
tests:
12-
name: "Python ${{ matrix.config.python-version }}"
12+
name: "ubuntu-20.04 / Python ${{ matrix.config.python-version }}"
1313
runs-on: "ubuntu-20.04"
1414
continue-on-error: ${{ matrix.config.experimental }}
1515
env:
16-
USING_COVERAGE: '3.6,3.7,3.8,pypy3,3.9,3.10.0-alpha.3'
16+
USING_COVERAGE: '3.6,3.7,3.8,3.9,3.10.0-alpha.3,pypy-3.6'
1717

1818
strategy:
1919
fail-fast: False
@@ -22,9 +22,9 @@ jobs:
2222
- {python-version: "3.6", testenvs: "py36,build", experimental: False}
2323
- {python-version: "3.7", testenvs: "py37,build", experimental: False}
2424
- {python-version: "3.8", testenvs: "py38,build", experimental: False}
25-
- {python-version: "pypy3", testenvs: "pypy3,build", experimental: False}
2625
- {python-version: "3.9", testenvs: "py39,build", experimental: False}
2726
- {python-version: "3.10.0-alpha.3", testenvs: "py310-dev,build", experimental: True}
27+
- {python-version: "pypy-3.6", testenvs: "pypy3,build", experimental: False}
2828

2929
steps:
3030
- name: Checkout 🛎️
@@ -99,6 +99,7 @@ jobs:
9999
100100
Deploy:
101101
needs: tests
102+
if: startsWith(github.ref, 'refs/tags/')
102103

103104
runs-on: "ubuntu-20.04"
104105
steps:

.github/workflows/python_ci_macos.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,11 @@ on:
99

1010
jobs:
1111
tests:
12-
name: "Python ${{ matrix.config.python-version }}"
12+
name: "macos-latest / Python ${{ matrix.config.python-version }}"
1313
runs-on: "macos-latest"
1414
continue-on-error: ${{ matrix.config.experimental }}
1515
env:
16-
USING_COVERAGE: '3.6,3.7,3.8,pypy3,3.9,3.10.0-alpha.3'
16+
USING_COVERAGE: '3.6,3.7,3.8,3.9,3.10.0-alpha.3,pypy-3.6'
1717

1818
strategy:
1919
fail-fast: False
@@ -22,9 +22,9 @@ jobs:
2222
- {python-version: "3.6", testenvs: "py36,build", experimental: False}
2323
- {python-version: "3.7", testenvs: "py37,build", experimental: False}
2424
- {python-version: "3.8", testenvs: "py38,build", experimental: False}
25-
- {python-version: "pypy3", testenvs: "pypy3,build", experimental: False}
2625
- {python-version: "3.9", testenvs: "py39,build", experimental: False}
2726
- {python-version: "3.10.0-alpha.3", testenvs: "py310-dev,build", experimental: True}
27+
- {python-version: "pypy-3.6", testenvs: "pypy3,build", experimental: False}
2828

2929
steps:
3030
- name: Checkout 🛎️

0 commit comments

Comments
 (0)