/
githubmirror
/
libverto
Обзор
Документация
Войти
/
githubmirror
/
libverto
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
.github/workflows/ci.yml
41 строка
1 KB
Simo Sorce
Remove CentOS 8 from CI matrix
18 июн 2026, 18:19
18 июн 2026, 18:19
8e944f2
Код
Авторство
О чём код?
{ "name": "CI", "on": { "push": null, "pull_request": null, }, "jobs": { "linux": { "runs-on": "ubuntu-latest", "container": "${{ matrix.distro }}", "strategy": { "fail-fast": false, "matrix": { "include": [ { "distro": "debian:sid" }, { "distro": "fedora:latest" }, { "distro": "fedora:latest", "compiler": "clang", }, { "distro": "debian:sid", "builtin": "yes", }, ], }, }, "steps": [ { "uses": "actions/checkout@v2" }, { "name": "Run CI", "run": "./ci.sh", "env": { "COMPILER": "${{ matrix.compiler }}", "BUILTIN": "${{ matrix.builtin }}", }, }, ], }, }, }