Update unittest.yml

https://github.com/actions/runner-images/issues/6002

Drop 18.04. Add 22.04.
This commit is contained in:
Amit D 2022-10-09 10:56:09 +03:00 committed by GitHub
parent ce8376ba72
commit a1a342db7b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,6 +1,5 @@
name: unittest
# autotools build on ubuntu. unittests with address sanitizers. with openmp.
# [ FAILED ] LSTMTrainerTest.DeterminismTest - clang version 9.0.0-2~ubuntu18.04.2
# ubuntu-20.04-gcc-unittest - CI runs out of diskspace.
on:
#push:
@ -15,8 +14,8 @@ jobs:
fail-fast: false
matrix:
config:
- { name: ubuntu-18.04-gcc-unittest, os: ubuntu-18.04, cxx: g++ }
- { name: ubuntu-20.04-clang-unittest, os: ubuntu-20.04, cxx: clang++ }
- { name: ubuntu-20.04-gcc-unittest, os: ubuntu-20.04, cxx: g++ }
- { name: ubuntu-22.04-clang-unittest, os: ubuntu-22.04, cxx: clang++ }
steps:
- uses: actions/checkout@v2
with: