rusefi/.github/workflows
andrey 8d6c593432 only:f407-discovery_debug 2023-10-06 20:34:10 -04:00
..
hw-ci only: HW CI flash erase progress (#5445) 2023-07-25 12:42:14 -04:00
build-android.yaml smarter condition for android build 2023-09-28 00:44:49 -04:00
build-firmware.yaml only:f407-discovery_debug 2023-10-06 20:34:10 -04:00
build-rusEFI-console.yaml build(deps): bump mikepenz/action-junit-report from 3 to 4 (#5553) 2023-09-07 07:04:06 -04:00
build-simulator.yaml only:more focused gradle invocation 2023-09-27 16:07:55 -04:00
build-tsplugin-body.yaml Bump actions/checkout from 3 to 4 (#5548) 2023-09-05 09:09:12 -04:00
build-unit-tests.yaml Bump actions/checkout from 3 to 4 (#5548) 2023-09-05 09:09:12 -04:00
check-pinout.yaml Bump actions/checkout from 3 to 4 (#5548) 2023-09-05 09:09:12 -04:00
gen-configs.yaml java 11 time! 2023-09-25 17:08:23 -04:00
gen-diffs.yaml Bump actions/checkout from 3 to 4 (#5548) 2023-09-05 09:09:12 -04:00
gen-docs.yaml Bump actions/checkout from 3 to 4 (#5548) 2023-09-05 09:09:12 -04:00
gen-ibom.yaml Bump actions/checkout from 3 to 4 (#5548) 2023-09-05 09:09:12 -04:00
gen-pinouts.yaml Bump actions/checkout from 3 to 4 (#5548) 2023-09-05 09:09:12 -04:00
hardware-ci.yaml Bump actions/checkout from 3 to 4 (#5548) 2023-09-05 09:09:12 -04:00
openocd_ci_f4_discovery.cfg
openocd_ci_proteus_f4.cfg only:steps towards proteus_f7 2023-07-23 12:17:48 -04:00
openocd_ci_proteus_f7.cfg only:f7 HW CI step 2023-07-23 17:53:24 -04:00
readme.md replace outdated Jenkins build documentation (#224) 2023-08-16 21:19:37 -04:00
set-date.yaml Bump actions/checkout from 3 to 4 (#5548) 2023-09-05 09:09:12 -04:00
sync-wiki.yaml Bump actions/checkout from 3 to 4 (#5548) 2023-09-05 09:09:12 -04:00

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