forked from BabylonJS/BabylonReactNative
-
Notifications
You must be signed in to change notification settings - Fork 0
104 lines (99 loc) · 3.82 KB
/
bn_master_commit.yml
File metadata and controls
104 lines (99 loc) · 3.82 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
name: BabylonNative master branch update
on:
repository_dispatch:
types: [babylonnative-master-update]
jobs:
build-android-ios:
name: Build Android - BabylonNative ${{ github.event.client_payload.sha }}
runs-on: macos-latest
steps:
- name: Checkout Repo
uses: actions/checkout@v2.3.3
with:
submodules: 'recursive'
- name: Setup CMake
uses: jwlawson/actions-setup-cmake@v1.8
with:
cmake-version: '3.19.6' # See https://gitlab.kitware.com/cmake/cmake/-/issues/22021
- name: Setup Ninja
run: brew install ninja
- name: NPM Install (Playground)
run: npm install
working-directory: ./Apps/Playground
- name: NPM Install (Binary Package)
run: npm install
working-directory: ./Package
- name: Git (Update to BabylonNative ${{ github.event.client_payload.sha }})
run: npx gulp initializeSubmodulesMostRecentBabylonNative --sha ${{ github.event.client_payload.sha }}
working-directory: ./Package
- name: Gulp (Android & iOS)
run: npx gulp
working-directory: ./Package
- name: Upload Assembled Folder
uses: actions/upload-artifact@v2
with:
name: 'Assembled'
path: Package/Assembled
build-windows:
name: Build Windows ${{ matrix.platform }} ${{ matrix.config }} - BabylonNative ${{ github.event.client_payload.sha }}
runs-on: windows-latest
steps:
- name: Checkout Repo
uses: actions/checkout@v2.3.3
with:
submodules: 'true'
- name: Setup MSBuild
uses: microsoft/setup-msbuild@v1.0.2
- name: Setup NuGet
uses: nuget/setup-nuget@v1
with:
nuget-version: '5.x'
- name: NPM Install (Playground)
run: npm install
working-directory: ./Apps/Playground
- name: NPM Install (Binary Package)
run: npm install
working-directory: ./Package
- name: Git (Update to BabylonNative ${{ github.event.client_payload.sha }})
run: npx gulp initializeSubmodulesMostRecentBabylonNative --sha ${{ github.event.client_payload.sha }} --windows
working-directory: ./Package
- name: Gulp (Windows)
run: npx gulp buildUWPPublish
working-directory: ./Package
- name: Upload Assembled-Windows Folder
uses: actions/upload-artifact@v2
with:
name: 'Assembled-Windows'
path: Package/Assembled-Windows
package:
needs: [build-android-ios, build-windows]
runs-on: macos-latest
steps:
- name: Checkout Repo
uses: actions/checkout@v2.3.3
with:
submodules: 'recursive'
- name: Git (Update to BabylonNative ${{ github.event.client_payload.sha }})
run: npx gulp initializeSubmodulesMostRecentBabylonNative --sha ${{ github.event.client_payload.sha }}
working-directory: ./Package
- name: NPM Install (Binary Package)
run: npm install
working-directory: ./Package
- name: Download Assembled Folder
uses: actions/download-artifact@v2
with:
name: 'Assembled'
path: Package/Assembled
- name: Download Assembled-Windows Folder
uses: actions/download-artifact@v2
with:
name: 'Assembled-Windows'
path: Package/Assembled-Windows
- name: Display structure of downloaded Assembled and Assembled-Windows folders
run: ls -R
- name: Update Babylon.js dependencies
run: npx gulp applyBabylonNativeBabylonJSVersion
working-directory: ./Package
- uses: stefanzweifel/git-auto-commit-action@v4
with:
commit_message: Automated Merge of BabylonNative ${{ github.event.client_payload.sha }}