Skip to content

Commit 9459c5d

Browse files
author
Matthias Köppe
authored
Merge branch 'develop' into yet_more_more_spkgs-confs
2 parents e9632df + 2f1a76d commit 9459c5d

File tree

587 files changed

+5094
-3402
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

587 files changed

+5094
-3402
lines changed

.github/workflows/build.yml

+7-2
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,11 @@ name: Build & Test
22

33
on:
44
pull_request:
5+
merge_group:
56
push:
6-
branches: ['**']
7+
branches:
8+
- master
9+
- develop
710
# Ignore pushes on tags to prevent two uploads of codecov reports
811
tags-ignore: ['**']
912
workflow_dispatch:
@@ -38,7 +41,9 @@ jobs:
3841
- name: Store CI fixes in upstream artifact
3942
run: |
4043
mkdir -p upstream
41-
git format-patch --stdout test_base > upstream/ci_fixes.patch
44+
if git format-patch --stdout test_base > ci_fixes.patch; then
45+
cp ci_fixes.patch upstream/
46+
fi
4247
- uses: actions/upload-artifact@v3
4348
with:
4449
path: upstream

.github/workflows/ci-conda.yml

+2-20
Original file line numberDiff line numberDiff line change
@@ -7,13 +7,6 @@ on:
77
branches:
88
- 'public/build/**-runci'
99
pull_request:
10-
types:
11-
# Defaults
12-
- opened
13-
- synchronize
14-
- reopened
15-
# When a CI label is added
16-
- labeled
1710
workflow_dispatch:
1811
# Allow to run manually
1912

@@ -27,20 +20,9 @@ jobs:
2720
name: Conda
2821
runs-on: ${{ matrix.os }}
2922

30-
# Run on push, workflow dispatch and when certain labels are added or are present
31-
if: |
32-
github.event_name != 'pull_request' ||
33-
((github.event.action != 'labeled' &&
34-
(contains(github.event.pull_request.labels.*.name, 'c: packages: standard') ||
35-
contains(github.event.pull_request.labels.*.name, 'c: packages: optional') ||
36-
contains(github.event.pull_request.labels.*.name, 's: run conda ci'))) ||
37-
(github.event.action == 'labeled' &&
38-
(github.event.label.name == 'c: packages: optional' ||
39-
github.event.label.name == 'c: packages: standard' ||
40-
github.event.label.name == 's: run conda ci')))
41-
4223
strategy:
43-
fail-fast: false
24+
fail-fast: ${{ github.event_name == 'pull_request' }}
25+
max-parallel: ${{ github.event_name == 'pull_request' && 2 || 6 }}
4426
matrix:
4527
os: [ubuntu-latest, macos-latest]
4628
python: ['3.9', '3.10', '3.11']

.github/workflows/ci-cygwin-standard.yml

-137
This file was deleted.

.github/workflows/ci-wsl.yml

-54
This file was deleted.

0 commit comments

Comments
 (0)