Fix workflow indentation
This commit is contained in:
parent
dd3fd1ff7a
commit
5489769907
|
@ -40,20 +40,24 @@ jobs:
|
||||||
env:
|
env:
|
||||||
SSH_KEY: ${{ runner.temp }}/id_rsa
|
SSH_KEY: ${{ runner.temp }}/id_rsa
|
||||||
- name: Ensure base deps
|
- name: Ensure base deps
|
||||||
run: python .github\\scripts\\ensure_base_deps.py
|
run: |
|
||||||
|
python .github\\scripts\\ensure_base_deps.py
|
||||||
env:
|
env:
|
||||||
SSH_KEY: ${{ runner.temp }}/id_rsa
|
SSH_KEY: ${{ runner.temp }}/id_rsa
|
||||||
- name: Compile all deps
|
- name: Compile all deps
|
||||||
run: python .github\\scripts\\compile_all_deps.py
|
run: |
|
||||||
|
python .github\\scripts\\compile_all_deps.py
|
||||||
env:
|
env:
|
||||||
SSH_KEY: ${{ runner.temp }}/id_rsa
|
SSH_KEY: ${{ runner.temp }}/id_rsa
|
||||||
- name: Build projects
|
- name: Build projects
|
||||||
run: python .github\\scripts\\build_projects.py
|
run: |
|
||||||
|
python .github\\scripts\\build_projects.py
|
||||||
env:
|
env:
|
||||||
SSH_KEY: ${{ runner.temp }}/id_rsa
|
SSH_KEY: ${{ runner.temp }}/id_rsa
|
||||||
- name: Upload failure logs
|
- name: Upload failure logs
|
||||||
if: failure()
|
if: failure()
|
||||||
run: python .github\\scripts\\upload_failure_logs.py
|
run: |
|
||||||
|
python .github\\scripts\\upload_failure_logs.py
|
||||||
|
|
||||||
Linux:
|
Linux:
|
||||||
strategy:
|
strategy:
|
||||||
|
|
Loading…
Reference in New Issue