Try adding Windows
This commit is contained in:
5
.github/workflows/validate-android.yml
vendored
5
.github/workflows/validate-android.yml
vendored
@@ -9,11 +9,12 @@ on:
|
|||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
build:
|
build:
|
||||||
name: Build (${{ matrix.mode }})
|
name: Build [${{ matrix.mode }}][${{ matrix.os }}]
|
||||||
runs-on: ubuntu-latest
|
runs-on: ${{ matrix.os }}
|
||||||
strategy:
|
strategy:
|
||||||
matrix:
|
matrix:
|
||||||
mode: [Debug, Release]
|
mode: [Debug, Release]
|
||||||
|
os: [ubuntu-latest, windows-latest]
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v3
|
- uses: actions/checkout@v3
|
||||||
|
8
.github/workflows/validate-apple.yml
vendored
8
.github/workflows/validate-apple.yml
vendored
@@ -10,7 +10,6 @@ on:
|
|||||||
jobs:
|
jobs:
|
||||||
lint-pods:
|
lint-pods:
|
||||||
name: Lint
|
name: Lint
|
||||||
if: ${{ false }} # Apple Build is Broken
|
|
||||||
runs-on: macos-latest
|
runs-on: macos-latest
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
@@ -21,10 +20,10 @@ jobs:
|
|||||||
|
|
||||||
- name: pod spec lint
|
- name: pod spec lint
|
||||||
run: pod spec lint --verbose
|
run: pod spec lint --verbose
|
||||||
|
continue-on-error: true # Apple Build is Broken
|
||||||
|
|
||||||
build-sample:
|
build-sample:
|
||||||
name: Build (${{ matrix.mode }})
|
name: Build [${{ matrix.mode }}]
|
||||||
if: ${{ false }} # Apple Build is Broken
|
|
||||||
runs-on: macos-latest
|
runs-on: macos-latest
|
||||||
strategy:
|
strategy:
|
||||||
matrix:
|
matrix:
|
||||||
@@ -37,8 +36,9 @@ jobs:
|
|||||||
uses: ./.github/actions/setup-apple
|
uses: ./.github/actions/setup-apple
|
||||||
|
|
||||||
- name: pod install
|
- name: pod install
|
||||||
working-directory: ./YogaKit/YogaKitSample
|
|
||||||
run: pod install
|
run: pod install
|
||||||
|
working-directory: ./YogaKit/YogaKitSample
|
||||||
|
continue-on-error: true # Apple Build is Broken
|
||||||
|
|
||||||
# TODO: xcodebuild
|
# TODO: xcodebuild
|
||||||
|
|
||||||
|
21
.github/workflows/validate-js.yml
vendored
21
.github/workflows/validate-js.yml
vendored
@@ -12,8 +12,11 @@ env:
|
|||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
benchmark:
|
benchmark:
|
||||||
name: Benchmark
|
name: Benchmark [${{ matrix.os }}]
|
||||||
runs-on: ubuntu-latest
|
runs-on: ${{ matrix.os }}
|
||||||
|
strategy:
|
||||||
|
matrix:
|
||||||
|
os: [ubuntu-latest, windows-latest]
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v3
|
- uses: actions/checkout@v3
|
||||||
|
|
||||||
@@ -25,8 +28,11 @@ jobs:
|
|||||||
working-directory: javascript
|
working-directory: javascript
|
||||||
|
|
||||||
build:
|
build:
|
||||||
name: Build
|
name: Build [${{ matrix.os }}]
|
||||||
runs-on: ubuntu-latest
|
runs-on: ${{ matrix.os }}
|
||||||
|
strategy:
|
||||||
|
matrix:
|
||||||
|
os: [ubuntu-latest, windows-latest]
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v3
|
- uses: actions/checkout@v3
|
||||||
|
|
||||||
@@ -38,8 +44,11 @@ jobs:
|
|||||||
working-directory: javascript
|
working-directory: javascript
|
||||||
|
|
||||||
test:
|
test:
|
||||||
name: Test
|
name: Test [${{ matrix.os }}]
|
||||||
runs-on: ubuntu-latest
|
runs-on: ${{ matrix.os }}
|
||||||
|
strategy:
|
||||||
|
matrix:
|
||||||
|
os: [ubuntu-latest, windows-latest]
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v3
|
- uses: actions/checkout@v3
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user