Skip to content

Commit a3c2796

Browse files
Bump CI from Ubuntu 20.04 to 22.04
1 parent 3538429 commit a3c2796

1 file changed

Lines changed: 8 additions & 9 deletions

File tree

.github/workflows/github-actions.yml

Lines changed: 8 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -109,21 +109,20 @@ jobs:
109109
- name: Run C# example
110110
run: |
111111
${{ github.workspace }}\cs\example\bin\x64\Release\example.exe
112-
ubuntu-20-java11:
113-
runs-on: ubuntu-20.04
112+
ubuntu-22-java11:
113+
runs-on: ubuntu-22.04
114114
strategy:
115115
fail-fast: false # 'false' means Don't stop matrix workflows even if some matrix failed.
116116
matrix:
117117
include: [
118118
{ xcc_name: 'gcc 9', xcc_pkg: gcc-9, cc: gcc-9, cxx: g++-9 },
119119
{ xcc_name: 'gcc 10', xcc_pkg: gcc-10, cc: gcc-10, cxx: g++-10 },
120-
{ xcc_name: 'clang 9', xcc_pkg: clang-9, cc: clang-9, cxx: clang++-9 },
121-
{ xcc_name: 'clang 10', xcc_pkg: clang-10, cc: clang-10, cxx: clang++-10 },
122120
{ xcc_name: 'clang 11', xcc_pkg: clang-11, cc: clang-11, cxx: clang++-11 },
123-
# { xcc_name: 'clang 12', xcc_pkg: clang-12, cc: clang, cxx: clang++ },
121+
{ xcc_name: 'clang 12', xcc_pkg: clang-12, cc: clang-12, cxx: clang++-12 },
122+
{ xcc_name: 'clang 13', xcc_pkg: clang-13, cc: clang-13, cxx: clang++-13 },
124123
]
125124
env:
126-
XCC: $${{ matrix.xcc_name }}
125+
XCC: ${{ matrix.xcc_name }}
127126
CC: ${{ matrix.cc }}
128127
CXX: ${{ matrix.cxx }}
129128
steps:
@@ -164,7 +163,7 @@ jobs:
164163
java -Djava.library.path=${{ runner.temp }}/fesapi-install/lib -cp `find ${{ runner.temp }}/fesapi-install -name fesapiJava*.jar`:. com.f2i_consulting.example.FesapiJavaExample
165164
- uses: actions/upload-artifact@v4
166165
with:
167-
name: ubuntu-20.04-${{ matrix.cxx }}
166+
name: ubuntu-22.04-${{ matrix.cxx }}
168167
path: ${{ runner.temp }}/fesapi-install
169168
build_wheels_windows:
170169
name: Build wheels on windows-latest
@@ -289,7 +288,7 @@ jobs:
289288
name: cibw-wheels-macosx_arm64
290289
path: ./wheelhouse/*.whl
291290
ubuntu-20-mpi:
292-
runs-on: ubuntu-20.04
291+
runs-on: ubuntu-22.04
293292
steps:
294293
- name: Checkout
295294
uses: actions/checkout@v4
@@ -333,7 +332,7 @@ jobs:
333332
${{ github.workspace }}/../build/test/unitTest
334333
webassembly:
335334
if: false
336-
runs-on: ubuntu-20.04
335+
runs-on: ubuntu-22.04
337336
steps:
338337
- uses: mymindstorm/setup-emsdk@v11
339338
- uses: actions/checkout@v4

0 commit comments

Comments
 (0)