fix
This commit is contained in:
10
.github/workflows/ci.yml
vendored
10
.github/workflows/ci.yml
vendored
@@ -8,7 +8,7 @@ on:
|
|||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
build:
|
build:
|
||||||
continue-on-error: true
|
# continue-on-error: true
|
||||||
strategy:
|
strategy:
|
||||||
fail-fast: false
|
fail-fast: false
|
||||||
matrix:
|
matrix:
|
||||||
@@ -50,24 +50,24 @@ jobs:
|
|||||||
uses: actions/setup-go@v4.0.1
|
uses: actions/setup-go@v4.0.1
|
||||||
|
|
||||||
- name: Install GCC
|
- name: Install GCC
|
||||||
if: ${{ matrix.os }} == "macos-latest"
|
if: matrix.os == 'macos-latest'
|
||||||
run: brew install gcc
|
run: brew install gcc
|
||||||
|
|
||||||
- name: Set up MinGW
|
- name: Set up MinGW
|
||||||
if: ${{ matrix.os }} != "macos-latest"
|
if: matrix.os != 'macos-latest'
|
||||||
uses: egor-tensin/setup-mingw@v2
|
uses: egor-tensin/setup-mingw@v2
|
||||||
with:
|
with:
|
||||||
platform: x64
|
platform: x64
|
||||||
|
|
||||||
- name: Setup Java
|
- name: Setup Java
|
||||||
if: ${{ matrix.platform }} == "android"
|
if: matrix.platform == 'android'
|
||||||
uses: actions/setup-java@v3
|
uses: actions/setup-java@v3
|
||||||
with:
|
with:
|
||||||
distribution: "zulu"
|
distribution: "zulu"
|
||||||
java-version: 11
|
java-version: 11
|
||||||
|
|
||||||
- name: Setup Android SDK
|
- name: Setup Android SDK
|
||||||
if: ${{ matrix.platform }} == "android"
|
if: matrix.platform == 'android'
|
||||||
uses: android-actions/setup-android@v2
|
uses: android-actions/setup-android@v2
|
||||||
|
|
||||||
- name: Get Dependencies
|
- name: Get Dependencies
|
||||||
|
|||||||
Reference in New Issue
Block a user