Skip to content

Commit 8273480

Browse files
committed
Tracking ci.yml changes from master.
1 parent 2ee1e64 commit 8273480

File tree

2 files changed

+24
-24
lines changed

2 files changed

+24
-24
lines changed

.github/workflows/ci_sh_def.yml

Lines changed: 22 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -75,10 +75,10 @@ jobs:
7575
runs-on: ${{ matrix.runs-on }}
7676

7777
steps:
78-
- uses: actions/checkout@v2
78+
- uses: actions/checkout@v3
7979

8080
- name: Setup Python ${{ matrix.python }}
81-
uses: actions/setup-python@v2
81+
uses: actions/setup-python@v3
8282
with:
8383
python-version: ${{ matrix.python }}
8484

@@ -96,7 +96,7 @@ jobs:
9696

9797
- name: Cache wheels
9898
if: runner.os == 'macOS'
99-
uses: actions/cache@v2
99+
uses: actions/cache@v3
100100
with:
101101
# This path is specific to macOS - we really only need it for PyPy NumPy wheels
102102
# See https://github.com/actions/cache/blob/master/examples.md#python---pip
@@ -208,7 +208,7 @@ jobs:
208208
runs-on: ubuntu-latest
209209

210210
steps:
211-
- uses: actions/checkout@v2
211+
- uses: actions/checkout@v3
212212

213213
- name: Setup Python ${{ matrix.python-version }} (deadsnakes)
214214
uses: deadsnakes/action@v2.1.1
@@ -221,7 +221,7 @@ jobs:
221221

222222
- name: Valgrind cache
223223
if: matrix.valgrind
224-
uses: actions/cache@v2
224+
uses: actions/cache@v3
225225
id: cache-valgrind
226226
with:
227227
path: valgrind
@@ -302,7 +302,7 @@ jobs:
302302
container: "silkeh/clang:${{ matrix.clang }}"
303303

304304
steps:
305-
- uses: actions/checkout@v2
305+
- uses: actions/checkout@v3
306306

307307
- name: Add wget and python3
308308
run: apt-get update && apt-get install -y python3-dev python3-numpy python3-pytest libeigen3-dev
@@ -337,7 +337,7 @@ jobs:
337337
container: nvidia/cuda:11.0-devel-ubuntu20.04
338338

339339
steps:
340-
- uses: actions/checkout@v2
340+
- uses: actions/checkout@v3
341341

342342
# tzdata will try to ask for the timezone, so set the DEBIAN_FRONTEND
343343
- name: Install 🐍 3
@@ -362,7 +362,7 @@ jobs:
362362
# container: centos:8
363363
#
364364
# steps:
365-
# - uses: actions/checkout@v2
365+
# - uses: actions/checkout@v3
366366
#
367367
# - name: Add Python 3 and a few requirements
368368
# run: yum update -y && yum install -y git python3-devel python3-numpy python3-pytest make environment-modules
@@ -405,7 +405,7 @@ jobs:
405405
container: centos:7
406406

407407
steps:
408-
- uses: actions/checkout@v2
408+
- uses: actions/checkout@v3
409409

410410
- name: Add Python 3 and a few requirements
411411
run: yum update -y && yum install -y epel-release && yum install -y git python3-devel make environment-modules cmake3
@@ -466,7 +466,7 @@ jobs:
466466
container: "gcc:${{ matrix.gcc }}"
467467

468468
steps:
469-
- uses: actions/checkout@v1
469+
- uses: actions/checkout@v3
470470

471471
- name: Add Python 3
472472
run: apt-get update; apt-get install -y python3-dev python3-numpy python3-pytest python3-pip libeigen3-dev
@@ -509,7 +509,7 @@ jobs:
509509
name: "🐍 3 • ICC latest • x64"
510510

511511
steps:
512-
- uses: actions/checkout@v2
512+
- uses: actions/checkout@v3
513513

514514
- name: Add apt repo
515515
run: |
@@ -614,7 +614,7 @@ jobs:
614614
container: "quay.io/centos/centos:${{ matrix.centos }}"
615615

616616
steps:
617-
- uses: actions/checkout@v2
617+
- uses: actions/checkout@v3
618618

619619
- name: Add Python 3
620620
run: yum update -y && yum install -y python3-devel gcc-c++ make git
@@ -658,7 +658,7 @@ jobs:
658658
container: i386/debian:buster
659659

660660
steps:
661-
- uses: actions/checkout@v1
661+
- uses: actions/checkout@v3
662662

663663
- name: Install requirements
664664
run: |
@@ -702,9 +702,9 @@ jobs:
702702
runs-on: ubuntu-latest
703703

704704
steps:
705-
- uses: actions/checkout@v2
705+
- uses: actions/checkout@v3
706706

707-
- uses: actions/setup-python@v2
707+
- uses: actions/setup-python@v3
708708

709709
- name: Install Doxygen
710710
run: sudo apt-get install -y doxygen librsvg2-bin # Changed to rsvg-convert in 20.04
@@ -749,10 +749,10 @@ jobs:
749749
runs-on: windows-2019
750750

751751
steps:
752-
- uses: actions/checkout@v2
752+
- uses: actions/checkout@v3
753753

754754
- name: Setup Python ${{ matrix.python }}
755-
uses: actions/setup-python@v2
755+
uses: actions/setup-python@v3
756756
with:
757757
python-version: ${{ matrix.python }}
758758
architecture: x86
@@ -803,10 +803,10 @@ jobs:
803803
runs-on: windows-2019
804804

805805
steps:
806-
- uses: actions/checkout@v2
806+
- uses: actions/checkout@v3
807807

808808
- name: Setup Python ${{ matrix.python }}
809-
uses: actions/setup-python@v2
809+
uses: actions/setup-python@v3
810810
with:
811811
python-version: ${{ matrix.python }}
812812
architecture: x86
@@ -852,10 +852,10 @@ jobs:
852852
runs-on: windows-2022
853853

854854
steps:
855-
- uses: actions/checkout@v2
855+
- uses: actions/checkout@v3
856856

857857
- name: Setup Python ${{ matrix.python }}
858-
uses: actions/setup-python@v2
858+
uses: actions/setup-python@v3
859859
with:
860860
python-version: ${{ matrix.python }}
861861

@@ -916,7 +916,7 @@ jobs:
916916
mingw-w64-${{matrix.env}}-boost
917917
mingw-w64-${{matrix.env}}-catch
918918
919-
- uses: actions/checkout@v2
919+
- uses: actions/checkout@v3
920920

921921
- name: Configure C++11
922922
# LTO leads to many undefined reference like

.github/workflows/ci_sh_def.yml.patch

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
--- ci.yml 2022-04-12 15:49:00.096485388 -0700
2-
+++ ci_sh_def.yml 2022-04-12 15:49:41.587900942 -0700
1+
--- ci.yml 2022-05-02 12:41:48.573584316 -0700
2+
+++ ci_sh_def.yml 2022-05-02 12:42:27.140839307 -0700
33
@@ -1,4 +1,16 @@
44
-name: CI
55
+# PLEASE KEEP THIS GROUP OF FILES IN SYNC AT ALL TIMES:

0 commit comments

Comments
 (0)