Skip to content

Update github action, fix compiler error #2

Update github action, fix compiler error

Update github action, fix compiler error #2

Workflow file for this run

name: Github Linux Build
on:
push:
branches: [ "**" ]
pull_request:
branches: [ "main" ]
jobs:
build multiple configuration:

Check failure on line 10 in .github/workflows/linux_build.yaml

View workflow run for this annotation

GitHub Actions / Github Linux Build

Invalid workflow file

The workflow is not valid. .github/workflows/linux_build.yaml (Line: 10, Col: 3): The identifier 'build multiple configuration' is invalid. IDs may only contain alphanumeric characters, '_', and '-'. IDs must start with a letter or '_' and and must be less than 100 characters.
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Configure linux_threadx_debug
working-directory: ${{github.workspace}}
run: cmake --preset=linux_threadx_debug
- name: Build linux_threadx_debug
run: cmake --build --preset=linux_threadx_debug
- name: Configure linux_test_debug
working-directory: ${{github.workspace}}
run: cmake --preset=linux_test_debug
- name: Build linux_test_debug
run: cmake --build --preset=linux_test_debug
- name: Configure linux_debug
working-directory: ${{github.workspace}}
run: cmake --preset=linux_debug
- name: Build linux_test
run: cmake --build --preset=linux_debug
- name: Configure linux_release
working-directory: ${{github.workspace}}
run: cmake --preset=linux_release
- name: Build linux_release
run: cmake --build --preset=linux_release