rusefi/.github/workflows
rusefillc e5a823d290 let's see at least one at_start_f435 2023-11-19 18:23:06 -05:00
..
hw-ci
build-android.yaml only:Unit Tests on Windows 2023-11-04 09:15:17 -04:00
build-firmware-windows.yaml only:windows compilation seems broken #5703 2023-11-09 18:17:25 -05:00
build-firmware.yaml let's see at least one at_start_f435 2023-11-19 18:23:06 -05:00
build-rusEFI-console.yaml
build-simulator.yaml Make TPS/PPS split configurable #5620 2023-10-30 22:25:29 -04:00
build-tsplugin-body.yaml
build-unit-tests-windows.yaml only:windows compilation seems broken #5703 2023-11-09 18:17:25 -05:00
build-unit-tests.yaml only:Unit Tests on Windows 2023-11-04 13:18:55 -04:00
check-pinout.yaml
codeql-buildscript.sh Add CodeQL Workflow for Code Security Analysis (#5656) 2023-10-27 23:38:34 -04:00
codeql.yml Bump actions/checkout from 3 to 4 (#5665) 2023-11-01 16:50:26 -04:00
fail_on_error.py Add CodeQL Workflow for Code Security Analysis (#5656) 2023-10-27 23:38:34 -04:00
gen-configs.yaml
gen-diffs.yaml
gen-docs.yaml
gen-ibom.yaml
gen-pinouts.yaml
hardware-ci.yaml Upload hwci rusefi.bin (#5677) 2023-11-01 16:27:34 -04:00
openocd_ci_f4_discovery.cfg
openocd_ci_proteus_f4.cfg
openocd_ci_proteus_f7.cfg
readme.md
set-date.yaml
sync-wiki.yaml

readme.md

Here is a diagram of which configure scripts are used for which workflows. This is not a complete diagram of all workflows, nor does it show everything that these jobs do.

For up-to-date information check the GitHib workflow actions (GHA) definition files *.yaml

The workflows are triggered by events: push & pull_request

flowchart TD
    gha_firmware["Firmware"]
    firmware_build[["build-firmware.yaml"]]
    gha_Console["Console"]
    Console_build[["build-FOME-console.yaml"]]
    gha_Simulator["Simulator"]
    Simulator_build[["build-simulator.yaml"]]
    gha_generate_ECU_configs["Generate configs for all supported ECUs"]
    generate_ECU_configs[["gen-configs.yaml"]]
    gha_UnitTests["Unit tests"]
    UnitTests_build[["build-unit-tests.yaml"]]
    gha_Hardware_CI["Hardware Continous Integration"]
    Hardware_CI[["hardware-ci.yaml"]]
   

    gha_firmware --> firmware_build
    gha_generate_ECU_configs ---> generate_ECU_configs
    gha_Console ---> Console_build
    gha_Simulator ---> Simulator_build
    gha_UnitTests ---> UnitTests_build
    gha_Hardware_CI ---> Hardware_CI