Allow to continue even if recursive submodule checkout fails
This commit is contained in:
Родитель
80f7155761
Коммит
b9d3aecaa0
|
@ -19,6 +19,7 @@ jobs:
|
|||
uses: actions/checkout@v2
|
||||
with:
|
||||
submodules: 'true'
|
||||
continue-on-error: true
|
||||
- name: Chocolatey
|
||||
run: |
|
||||
$Env:ANDROID_SDK_ROOT = "C:\Android\android-sdk"
|
||||
|
|
|
@ -23,5 +23,6 @@ jobs:
|
|||
- uses: actions/checkout@v2
|
||||
with:
|
||||
submodules: 'true'
|
||||
continue-on-error: true
|
||||
- name: build
|
||||
run: ./build-tests-ios.sh ${{ matrix.config }} ${{ matrix.simulator }}
|
||||
|
|
|
@ -22,6 +22,8 @@ jobs:
|
|||
os: [ubuntu-latest, macOS-latest]
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v1
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v1
|
||||
continue-on-error: true
|
||||
- name: Test ${{ matrix.os }} ${{ matrix.config }}
|
||||
run: ./build-tests.sh ${{ matrix.config }}
|
||||
|
|
|
@ -18,6 +18,7 @@ jobs:
|
|||
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v2
|
||||
continue-on-error: true
|
||||
|
||||
- name: Setup Tools
|
||||
env:
|
||||
|
|
|
@ -18,6 +18,7 @@ jobs:
|
|||
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v2
|
||||
continue-on-error: true
|
||||
|
||||
- name: Setup Tools
|
||||
shell: cmd
|
||||
|
|
|
@ -18,6 +18,7 @@ jobs:
|
|||
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v2
|
||||
continue-on-error: true
|
||||
|
||||
- name: Setup Tools
|
||||
shell: cmd
|
||||
|
|
|
@ -29,8 +29,9 @@ jobs:
|
|||
# https://docs.github.com/en/github/finding-security-vulnerabilities-and-errors-in-your-code/configuring-code-scanning#overriding-automatic-language-detection
|
||||
|
||||
steps:
|
||||
- name: Checkout repository
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v2
|
||||
continue-on-error: true
|
||||
|
||||
# Initializes the CodeQL tools for scanning.
|
||||
- name: Initialize CodeQL
|
||||
|
|
|
@ -11,8 +11,10 @@ jobs:
|
|||
runs-on: ubuntu-latest
|
||||
|
||||
steps:
|
||||
- name: check out code
|
||||
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v2
|
||||
continue-on-error: true
|
||||
|
||||
- name: install misspell
|
||||
run: |
|
||||
|
|
|
@ -17,10 +17,13 @@ jobs:
|
|||
runs-on: macos-latest
|
||||
name: Android Unit Tests (Mac)
|
||||
steps:
|
||||
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v2
|
||||
with:
|
||||
submodules: 'true'
|
||||
continue-on-error: true
|
||||
|
||||
- name: Build and Test
|
||||
uses: reactivecircus/android-emulator-runner@v2
|
||||
with:
|
||||
|
|
|
@ -23,7 +23,11 @@ jobs:
|
|||
os: [windows-2016]
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v1
|
||||
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v1
|
||||
continue-on-error: true
|
||||
|
||||
- name: Test ${{ matrix.arch }} ${{ matrix.config }}
|
||||
shell: cmd
|
||||
run: build-tests.cmd ${{ matrix.arch }} ${{ matrix.config }}
|
||||
|
|
Загрузка…
Ссылка в новой задаче