something wrong with enum to string build #4448
unable to reproduce any issue?
This commit is contained in:
parent
57651f811f
commit
f6fcd7387b
|
@ -51,6 +51,23 @@ jobs:
|
|||
name: console junit
|
||||
path: ./java_console/build/*.txt
|
||||
|
||||
- name: Configuration Definition CI, without pushing new .jar
|
||||
working-directory: ./android
|
||||
run: ./gradlew :config_definition:shadowJar
|
||||
|
||||
- name: Test everything gradle while we are here
|
||||
# it's a bit of a mess but well
|
||||
working-directory: ./android
|
||||
run: ./gradlew test
|
||||
|
||||
- name: Configuration Definition and other tools CI, without pushing new .jars
|
||||
working-directory: ./android
|
||||
run: ./gradlew shadowJar
|
||||
|
||||
- name: Generate Enums using freshly compiler tool
|
||||
working-directory: ./firmware/
|
||||
run: ./gen_enum_to_string.sh
|
||||
|
||||
- name: Upload rusEFI server
|
||||
working-directory: .
|
||||
run: java_console/upload_file.sh ${{ secrets.RUSEFI_SSH_USER }} ${{ secrets.RUSEFI_SSH_PASS }} ${{ secrets.RUSEFI_SSH_SERVER }} build_server/autoupdate java_console_binary/rusefi_server.jar
|
||||
|
|
|
@ -23,21 +23,19 @@ jobs:
|
|||
|
||||
- name: Generate Configs for simulator
|
||||
working-directory: ./firmware/
|
||||
run: |
|
||||
bash gen_config_default.sh
|
||||
run: ./gen_config_default.sh
|
||||
|
||||
- name: Generate Enums
|
||||
working-directory: ./firmware/
|
||||
run: |
|
||||
bash gen_enum_to_string.sh
|
||||
run: ./gen_enum_to_string.sh
|
||||
|
||||
- name: Generate Live Documentation
|
||||
working-directory: ./firmware/
|
||||
run: bash gen_live_documentation.sh
|
||||
run: ./gen_live_documentation.sh
|
||||
|
||||
- name: Compile Simulator
|
||||
working-directory: ./simulator/
|
||||
run: bash compile.sh
|
||||
run: ./compile.sh
|
||||
|
||||
- name: Run Simulator (10 seconds)
|
||||
working-directory: ./simulator/
|
||||
|
@ -48,7 +46,3 @@ jobs:
|
|||
with:
|
||||
name: rusefi_simulator_linux
|
||||
path: ./simulator/build/rusefi_simulator
|
||||
|
||||
- name: Configuration Definition CI, without pushing new .jar
|
||||
working-directory: ./android
|
||||
run: ./gradlew :config_definition:shadowJar
|
||||
|
|
Loading…
Reference in New Issue