Skip to content

Commit 592b28c

Browse files
committed
Linux CI: Actually build conda [skip ci]
1 parent 29309ef commit 592b28c

File tree

3 files changed

+12
-4
lines changed

3 files changed

+12
-4
lines changed

.github/workflows/python_ci.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ jobs:
1313
runs-on: "windows-2019"
1414
env:
1515
USING_COVERAGE: '3.6,3.7,3.8,3.9'
16+
if: contains(github.event.head_commit.message, '[skip ci]') == false
1617

1718
strategy:
1819
fail-fast: False

.github/workflows/python_ci_linux.yml

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ jobs:
1313
runs-on: "ubuntu-18.04"
1414
env:
1515
USING_COVERAGE: '3.6,3.7,3.8,pypy3,3.9'
16+
if: contains(github.event.head_commit.message, '[skip ci]') == false
1617

1718
strategy:
1819
fail-fast: False
@@ -32,7 +33,7 @@ jobs:
3233
python -m site
3334
python -m pip install --upgrade pip setuptools wheel
3435
python -m pip install --upgrade tox tox-gh-actions virtualenv
35-
python -m pip install --upgrade coveralls coverage_pyver_pragma
36+
python -m pip install --upgrade coverage_pyver_pragma
3637
3738
- name: "Run Tests for Python ${{ matrix.python-version }}"
3839
run: "python -m tox"
@@ -44,7 +45,7 @@ jobs:
4445
path: .coverage
4546

4647

47-
coverage:
48+
Coverage:
4849
needs: tests
4950
runs-on: "ubuntu-18.04"
5051
steps:
@@ -87,7 +88,7 @@ jobs:
8788
run: |
8889
coveralls
8990
90-
deploy:
91+
Deploy:
9192
needs: tests
9293

9394
runs-on: "ubuntu-18.04"
@@ -119,7 +120,8 @@ jobs:
119120
skip_existing: true
120121

121122

122-
conda:
123+
124+
Conda:
123125
needs: deploy
124126
runs-on: "ubuntu-18.04"
125127
steps:
@@ -131,5 +133,9 @@ jobs:
131133
wget https://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh -O miniconda.sh
132134
bash miniconda.sh -b -p $HOME/miniconda
133135
chmod +x .ci/actions_deploy_conda.sh
136+
137+
- name: Build and deploy 📦
138+
run: |
139+
bash .ci/travis_deploy_conda.sh
134140
env:
135141
ANACONDA_TOKEN: ${{ secrets.ANACONDA_TOKEN }}

.github/workflows/python_ci_macos.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ jobs:
1313
runs-on: "macos-latest"
1414
env:
1515
USING_COVERAGE: '3.6,3.7,3.8,pypy3,3.9'
16+
if: contains(github.event.head_commit.message, '[skip ci]') == false
1617

1718
strategy:
1819
fail-fast: False

0 commit comments

Comments
 (0)