Skip to content

Commit 48e6c9f

Browse files
committed
GHA config updates
1 parent 073d2ac commit 48e6c9f

File tree

1 file changed

+32
-23
lines changed

1 file changed

+32
-23
lines changed

.github/workflows/ci-scripts-build.yml

Lines changed: 32 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -12,11 +12,13 @@ on:
1212
push:
1313
paths-ignore:
1414
- 'documentation/*'
15-
- '.*.yml'
15+
- '.appveyor.yml'
16+
- '.readthedocs.yml'
1617
pull_request:
1718
paths-ignore:
1819
- 'documentation/*'
19-
- '.*.yml'
20+
- '.appveyor.yml'
21+
- '.readthedocs.yml'
2022

2123
env:
2224
SETUP_PATH: .ci-local:.ci
@@ -39,67 +41,74 @@ jobs:
3941
matrix:
4042
# Job names also name artifacts, character limitations apply
4143
include:
42-
- os: ubuntu-20.04
44+
- os: ubuntu-22.04
4345
cmp: gcc
4446
configuration: default
4547
base: "7.0"
4648
cross: "windows-x64-mingw"
47-
name: "7.0 Ub-20 gcc-9 + MinGW"
49+
name: "7.0 Ub-22 gcc + MinGW"
4850

49-
- os: ubuntu-20.04
51+
- os: ubuntu-22.04
5052
cmp: gcc
5153
configuration: static
5254
base: "7.0"
5355
cross: "windows-x64-mingw"
54-
name: "7.0 Ub-20 gcc-9 + MinGW, static"
56+
name: "7.0 Ub-22 gcc + MinGW, static"
5557

56-
- os: ubuntu-20.04
58+
- os: ubuntu-22.04
5759
cmp: gcc
5860
configuration: static
5961
base: "7.0"
6062
extra: "CMD_CXXFLAGS=-std=c++11"
61-
name: "7.0 Ub-20 gcc-9 C++11, static"
63+
name: "7.0 Ub-22 gcc C++11, static"
6264

63-
- os: ubuntu-20.04
65+
- os: ubuntu-22.04
66+
cmp: gcc
67+
configuration: static
68+
base: "7.0"
69+
extra: "CMD_CFLAGS=-funsigned-char CMD_CXXFLAGS=-funsigned-char"
70+
name: "7.0 Ub-22 gcc uchar"
71+
72+
- os: ubuntu-22.04
6473
cmp: clang
6574
configuration: default
6675
base: "7.0"
67-
name: "7.0 Ub-20 clang-10"
76+
name: "7.0 Ub-22 clang"
6877

69-
- os: ubuntu-20.04
78+
- os: ubuntu-22.04
7079
cmp: clang
7180
configuration: default
7281
base: "7.0"
7382
extra: "CMD_CXXFLAGS=-std=c++11"
74-
name: "7.0 Ub-20 clang-10 C++11"
83+
name: "7.0 Ub-22 clang C++11"
7584

76-
- os: ubuntu-20.04
85+
- os: ubuntu-22.04
7786
cmp: gcc
7887
configuration: default
7988
base: "7.0"
8089
cross: "RTEMS-pc686-qemu@5"
81-
name: "7.0 Ub-20 gcc-9 + RT-5.1 pc686"
90+
name: "7.0 Ub-22 gcc + RT-5.1 pc686"
8291

83-
- os: ubuntu-20.04
92+
- os: ubuntu-22.04
8493
cmp: gcc
8594
configuration: default
8695
base: "7.0"
8796
8897
test: NO
89-
name: "7.0 Ub-20 gcc-9 + RT-4.10"
98+
name: "7.0 Ub-22 gcc + RT-4.10"
9099

91-
- os: ubuntu-20.04
100+
- os: ubuntu-22.04
92101
cmp: gcc
93102
configuration: default
94103
base: "7.0"
95104
96-
name: "7.0 Ub-20 gcc-9 + RT-4.9"
105+
name: "7.0 Ub-22 gcc + RT-4.9"
97106

98107
- os: macos-latest
99108
cmp: clang
100109
configuration: default
101110
base: "7.0"
102-
name: "7.0 MacOS clang-12"
111+
name: "7.0 MacOS clang"
103112

104113
- os: windows-2019
105114
cmp: vs2019
@@ -127,15 +136,15 @@ jobs:
127136
base: "7.0"
128137
name: "7.0 Win2019 mingw"
129138

130-
- os: ubuntu-20.04
139+
- os: ubuntu-22.04
131140
cmp: gcc
132141
configuration: default
133142
base: "3.15"
134143
wine: "64"
135-
name: "3.15 Ub-20 gcc-9 + MinGW"
144+
name: "3.15 Ub-22 gcc + MinGW"
136145

137146
steps:
138-
- uses: actions/checkout@v3
147+
- uses: actions/checkout@v4
139148
with:
140149
submodules: true
141150
- name: Automatic core dump analysis
@@ -153,7 +162,7 @@ jobs:
153162
run: python .ci/cue.py -T 20M test
154163
- name: Upload tapfiles Artifact
155164
if: ${{ always() }}
156-
uses: actions/upload-artifact@v3
165+
uses: actions/upload-artifact@v4
157166
with:
158167
name: tapfiles ${{ matrix.name }}
159168
path: '**/O.*/*.tap'

0 commit comments

Comments
 (0)