ci: Fix submodule cloning
This commit is contained in:
parent
67016ccd95
commit
7a0136b071
|
@ -5,9 +5,13 @@ on: [push, pull_request]
|
||||||
jobs:
|
jobs:
|
||||||
windows:
|
windows:
|
||||||
runs-on: windows-2019
|
runs-on: windows-2019
|
||||||
|
name: "Windows"
|
||||||
steps:
|
steps:
|
||||||
- name: "Clone Repository"
|
- name: "Clone Repository"
|
||||||
uses: actions/checkout@v1
|
uses: actions/checkout@v1
|
||||||
|
- name: "Clone Submodules"
|
||||||
|
shell: bash
|
||||||
|
run: git submodule update --init --recursive
|
||||||
- name: "Configure Project"
|
- name: "Configure Project"
|
||||||
shell: bash
|
shell: bash
|
||||||
run: |
|
run: |
|
||||||
|
@ -36,9 +40,13 @@ jobs:
|
||||||
path: build/package
|
path: build/package
|
||||||
windows-speed:
|
windows-speed:
|
||||||
runs-on: windows-2019
|
runs-on: windows-2019
|
||||||
|
name: "Windows (Performance)"
|
||||||
steps:
|
steps:
|
||||||
- name: "Clone Repository"
|
- name: "Clone Repository"
|
||||||
uses: actions/checkout@v1
|
uses: actions/checkout@v1
|
||||||
|
- name: "Clone Submodules"
|
||||||
|
shell: bash
|
||||||
|
run: git submodule update --init --recursive
|
||||||
- name: "Configure Project"
|
- name: "Configure Project"
|
||||||
shell: bash
|
shell: bash
|
||||||
run: |
|
run: |
|
||||||
|
|
Loading…
Reference in New Issue