Skip to content

configure: Don't try to update submodules if git is not installed #2

configure: Don't try to update submodules if git is not installed

configure: Don't try to update submodules if git is not installed #2

Workflow file for this run

name: Kernel binary build
on:
push:
branches:
- main
paths:
- 'src/**'
- 'ext/**'
- 'Makefile.static'
- 'configure'
- '.github/workflows/kernel.yml'
jobs:
kernel:
runs-on: ubuntu-latest
container:
image: ghcr.io/lutoma/xelix/toolchain:latest
volumes:
- ${{ github.workspace }}:/src
steps:
- name: Check out git repository
uses: actions/checkout@v4
submodules: 'recursive'

Check failure on line 26 in .github/workflows/kernel.yml

View workflow run for this annotation

GitHub Actions / Kernel binary build

Invalid workflow file

The workflow is not valid. .github/workflows/kernel.yml (Line: 26, Col: 9): Unexpected value 'submodules'
- name: Configure sources
run: ./configure
- name: Compile kernel
run: make
- name: Upload binary artifact
uses: actions/upload-artifact@v3
with:
name: kernel-binary
path: xelix.bin