Update codeql.yml #10
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: [push] | |
jobs: | |
ci: | |
runs-on: ubuntu-20.04 # Embox NFS write test fails with ubuntu 18.04: "RPC: Can't decode result" | |
strategy: | |
fail-fast: false | |
matrix: | |
template: | |
- aarch64/qemu | |
- arm/qemu | |
- platform/stm32/f4/stm32f4-discovery | |
- x86/qemu | |
- x86/smp | |
- x86/user_apps | |
- project/qt4/x86_qemu_emboxvc | |
- x86/test/lang | |
- x86/test/net | |
- x86/test/fs | |
- x86/test/units | |
- x86/test/packetdrill | |
- x86/test/qt-vnc | |
- sparc/qemu | |
- mips/qemu | |
- ppc/qemu | |
- microblaze/qemu | |
- usermode86/debug | |
container: | |
image: embox/emdocker-test | |
options: --privileged -v /:/host | |
steps: | |
- uses: actions/checkout@v1 | |
# x86/test/net fails on caching | |
# - uses: actions/cache@v2 | |
# with: | |
# path: | | |
# mk/.cache | |
# key: mybuild-${{ hashFiles('**/Mybuild') }}-${{ hashFiles('**/*.my') }} | |
# - run: scripts/continuous/touch-mk-cache.sh | |
- run: chroot /host modprobe nfsd | |
if: matrix.template == 'x86/test/fs' | |
- run: ./scripts/continuous/prepare.sh ${{matrix.template}} | |
- run: make confload-${{matrix.template}} | |
- run: make -j $(nproc) | |
- run: ./scripts/continuous/run.sh ${{matrix.template}} |