Skip to content

dev: workflows: s/kdevops/mm-ci #3

dev: workflows: s/kdevops/mm-ci

dev: workflows: s/kdevops/mm-ci #3

Workflow file for this run

# SPDX-License-Identifier: GPL-2.0
#
# Most simple Linux kernel subsystems can be tested with this target
# test setup. For more elaborates tests look for a topic branch under the
# mm-ci-ci tree. For example to test a filesystem look at the fstests
# branch.
name: Run generic mm-ci CI tests
on:
push:
branches: ['**']
pull_request:
branches: ['**']
workflow_dispatch: # Allow manual triggering
jobs:
setup:
uses: ./.github/workflows/mm-ci-init.yml
secrets: inherit
run-tests:
needs: setup
name: Run CI tests
runs-on: [self-hosted, Linux, X64]
steps:
- name: Run CI tests
run: |
cd devops/linux
make defconfig
echo "ok" > ci.result