Skip to content

Commit 3fe69e0

Browse files
authored
Merge pull request #48 from inducer/master-to-main
CI/README: master->main
2 parents 551489c + 51d8c04 commit 3fe69e0

File tree

4 files changed

+19
-19
lines changed

4 files changed

+19
-19
lines changed

.github/workflows/ci.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: CI
22
on:
33
push:
44
branches:
5-
- master
5+
- main
66
pull_request:
77
paths-ignore:
88
- 'doc/*.rst'
@@ -21,7 +21,7 @@ jobs:
2121
python-version: '3.x'
2222
- name: "Main Script"
2323
run: |
24-
curl -L -O -k https://gitlab.tiker.net/inducer/ci-support/raw/master/prepare-and-run-flake8.sh
24+
curl -L -O -k https://gitlab.tiker.net/inducer/ci-support/raw/main/prepare-and-run-flake8.sh
2525
. ./prepare-and-run-flake8.sh "$(basename $GITHUB_REPOSITORY)" test gen_wrap.py examples
2626
2727
pytest:
@@ -39,7 +39,7 @@ jobs:
3939
- name: "Main Script"
4040
run: |
4141
EXTRA_INSTALL="numpy"
42-
curl -L -O -k https://gitlab.tiker.net/inducer/ci-support/raw/master/build-and-test-py-project.sh
42+
curl -L -O -k https://gitlab.tiker.net/inducer/ci-support/raw/main/build-and-test-py-project.sh
4343
. ./build-and-test-py-project.sh
4444
4545
examples:
@@ -57,7 +57,7 @@ jobs:
5757
- name: "Main Script"
5858
run: |
5959
EXTRA_INSTALL="matplotlib numpy"
60-
curl -L -O -k https://gitlab.tiker.net/inducer/ci-support/raw/master/ci-support.sh
60+
curl -L -O -k https://gitlab.tiker.net/inducer/ci-support/raw/main/ci-support.sh
6161
. ./ci-support.sh
6262
build_py_project_in_venv
6363
run_examples
@@ -73,7 +73,7 @@ jobs:
7373
python-version: '3.x'
7474
- name: "Main Script"
7575
run: |
76-
curl -L -O -k https://gitlab.tiker.net/inducer/ci-support/raw/master/build-and-test-py-project.sh
76+
curl -L -O -k https://gitlab.tiker.net/inducer/ci-support/raw/main/build-and-test-py-project.sh
7777
. ./build-and-test-py-project.sh
7878
7979
docs:
@@ -87,7 +87,7 @@ jobs:
8787
python-version: '3.x'
8888
- name: "Main Script"
8989
run: |
90-
curl -L -O -k https://gitlab.tiker.net/inducer/ci-support/raw/master/ci-support.sh
90+
curl -L -O -k https://gitlab.tiker.net/inducer/ci-support/raw/main/ci-support.sh
9191
. ci-support.sh
9292
build_py_project_in_venv
9393
build_docs
@@ -116,7 +116,7 @@ jobs:
116116
# Avoid slow or complicated tests in downstream projects
117117
export PYTEST_ADDOPTS="-k 'not (slowtest or octave or mpi)'"
118118
119-
curl -L -O -k https://gitlab.tiker.net/inducer/ci-support/raw/master/ci-support.sh
119+
curl -L -O -k https://gitlab.tiker.net/inducer/ci-support/raw/main/ci-support.sh
120120
. ./ci-support.sh
121121
build_py_project_in_conda_env
122122
test_py_project

.github/workflows/wheels.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: Build wheels
22
on:
33
push:
44
branches:
5-
- master
5+
- main
66
create:
77
tags:
88
- v*

.gitlab-ci.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Python 3:
22
script: |
33
EXTRA_INSTALL="numpy"
4-
curl -L -O -k https://gitlab.tiker.net/inducer/ci-support/raw/master/build-and-test-py-project.sh
4+
curl -L -O -k https://gitlab.tiker.net/inducer/ci-support/raw/main/build-and-test-py-project.sh
55
. ./build-and-test-py-project.sh
66
tags:
77
- python3
@@ -14,7 +14,7 @@ Python 3:
1414
Examples:
1515
script: |
1616
EXTRA_INSTALL="matplotlib numpy"
17-
curl -L -O -k https://gitlab.tiker.net/inducer/ci-support/raw/master/ci-support.sh
17+
curl -L -O -k https://gitlab.tiker.net/inducer/ci-support/raw/main/ci-support.sh
1818
. ./ci-support.sh
1919
build_py_project_in_venv
2020
run_examples
@@ -25,7 +25,7 @@ Examples:
2525

2626
Python 3 without small-integer opt:
2727
script: |
28-
curl -L -O -k https://gitlab.tiker.net/inducer/ci-support/raw/master/build-and-test-py-project.sh
28+
curl -L -O -k https://gitlab.tiker.net/inducer/ci-support/raw/main/build-and-test-py-project.sh
2929
./configure.py --no-use-imath-sio
3030
. ./build-and-test-py-project.sh
3131
tags:
@@ -55,7 +55,7 @@ Python 3 + Barvinok:
5555
PyPy3:
5656
script:
5757
- export PY_EXE=pypy3
58-
- curl -L -O -k https://gitlab.tiker.net/inducer/ci-support/raw/master/build-and-test-py-project.sh
58+
- curl -L -O -k https://gitlab.tiker.net/inducer/ci-support/raw/main/build-and-test-py-project.sh
5959
- ". ./build-and-test-py-project.sh"
6060
allow_failure: true
6161
tags:
@@ -68,16 +68,16 @@ PyPy3:
6868

6969
Documentation:
7070
script:
71-
- curl -L -O -k https://gitlab.tiker.net/inducer/ci-support/raw/master/build-docs.sh
71+
- curl -L -O -k https://gitlab.tiker.net/inducer/ci-support/raw/main/build-docs.sh
7272
- ". ./build-docs.sh"
7373
tags:
7474
- python3
7575
only:
76-
- master
76+
- main
7777

7878
Flake8:
7979
script:
80-
- curl -L -O -k https://gitlab.tiker.net/inducer/ci-support/raw/master/prepare-and-run-flake8.sh
80+
- curl -L -O -k https://gitlab.tiker.net/inducer/ci-support/raw/main/prepare-and-run-flake8.sh
8181
- . ./prepare-and-run-flake8.sh "$CI_PROJECT_NAME" test gen_wrap.py examples
8282
tags:
8383
- python3

README.rst

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
islpy: Polyhedral Analysis from Python
22
======================================
33

4-
.. image:: https://gitlab.tiker.net/inducer/islpy/badges/master/pipeline.svg
4+
.. image:: https://gitlab.tiker.net/inducer/islpy/badges/main/pipeline.svg
55
:alt: Gitlab Build Status
6-
:target: https://gitlab.tiker.net/inducer/islpy/commits/master
7-
.. image:: https://github.com/inducer/islpy/workflows/CI/badge.svg?branch=master&event=push
6+
:target: https://gitlab.tiker.net/inducer/islpy/commits/main
7+
.. image:: https://github.com/inducer/islpy/workflows/CI/badge.svg?branch=main&event=push
88
:alt: Github Build Status
9-
:target: https://github.com/inducer/islpy/actions?query=branch%3Amaster+workflow%3ACI+event%3Apush
9+
:target: https://github.com/inducer/islpy/actions?query=branch%3Amain+workflow%3ACI+event%3Apush
1010
.. image:: https://badge.fury.io/py/islpy.png
1111
:alt: Python Package Index Release Page
1212
:target: https://pypi.org/project/islpy/

0 commit comments

Comments
 (0)