Run simulator
This commit is contained in:
parent
779da5268b
commit
6525e5d2b6
|
@ -19,9 +19,12 @@ jobs:
|
|||
id: set-variables
|
||||
run: |
|
||||
if [ "${{github.event_name}}" == "push" -o "${{github.event_name}}" == "schedule" -o "${{github.event_name}}" == "workflow_dispatch" ] && [ "${{github.ref}}" == "refs/heads/master" -o "${{github.ref}}" == "refs/heads/main" ]; then
|
||||
echo 'upload="bundles"' >> $GITHUB_OUTPUT
|
||||
echo 'upload=bundles' >> $GITHUB_OUTPUT
|
||||
echo 'push=true' >> $GITHUB_OUTPUT
|
||||
echo 'sim=true' >> $GITHUB_OUTPUT
|
||||
else
|
||||
echo 'push="false"' >> $GITHUB_OUTPUT
|
||||
echo 'push=false' >> $GITHUB_OUTPUT
|
||||
echo 'sim=false' >> $GITHUB_OUTPUT
|
||||
fi
|
||||
|
||||
- uses: ./ext/rusefi/.github/workflows/custom-board-build
|
||||
|
@ -29,6 +32,7 @@ jobs:
|
|||
artifacts: bin srec hex list map elf bundle autoupdate
|
||||
uploads: ini ${{steps.set-variables.outputs.upload}}
|
||||
push: ${{steps.set-variables.outputs.push}}
|
||||
run_simulator: ${{ steps.set-variables.outputs.sim }}
|
||||
MY_REPO_PAT: ${{secrets.MY_REPO_PAT}}
|
||||
RUSEFI_ONLINE_FTP_USER: ${{secrets.RUSEFI_ONLINE_FTP_USER}}
|
||||
RUSEFI_ONLINE_FTP_PASS: ${{secrets.RUSEFI_ONLINE_FTP_PASS}}
|
||||
|
|
|
@ -18,7 +18,6 @@ java_console_binary
|
|||
err.txt
|
||||
log.txt
|
||||
*.rusefi_binary
|
||||
*.msq
|
||||
|
||||
# Eclipse
|
||||
.metadata/
|
||||
|
|
|
@ -1 +1 @@
|
|||
Subproject commit 05d744b8f29549af6a11e24fe2ffa3ab343cc63d
|
||||
Subproject commit e5bdb0ab542955faf3cc08ba64221da95d58416f
|
Loading…
Reference in New Issue