-
Notifications
You must be signed in to change notification settings - Fork 63
BabylonReactNative Basekit frontend package #615
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Draft
CedricGuillemet
wants to merge
26
commits into
BabylonJS:master
Choose a base branch
from
CedricGuillemet:AppendRelease
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Draft
Changes from all commits
Commits
Show all changes
26 commits
Select commit
Hold shift + click to select a range
73de5ac
append_release action
CedricGuillemet 069dcb4
compress id must be unique
CedricGuillemet 3cc8a96
reduce folder depth for tgz
CedricGuillemet 9405baf
react-native-basekit
CedricGuillemet 0a773ce
configuration and error handling
CedricGuillemet 160ef8f
fix windows vcxproj
CedricGuillemet 6455983
publish
CedricGuillemet 6d72317
append_release for publishing check
CedricGuillemet 009e40b
npm cache
CedricGuillemet 96c21bf
test append to release
CedricGuillemet c2fa580
preview parameter check
CedricGuillemet d56ae83
breaking if
CedricGuillemet cf0d89d
testing boolean
CedricGuillemet bbcc38c
Merge branch 'master' into AppendRelease
CedricGuillemet f174f2f
Merge branch 'master' of https://github.com/BabylonJS/BabylonReactNat…
CedricGuillemet af5ba6a
rework install script
CedricGuillemet 6a13be3
Merge branch 'AppendRelease' of https://github.com/cedricguillemet/Ba…
CedricGuillemet 47bc45b
set java 17 as java 18 is not compatible with android projects
CedricGuillemet b857f1b
Readme and version check
CedricGuillemet 534eda4
removed dry run for publish
CedricGuillemet 648c79f
installation configuration
CedricGuillemet b752264
basekit package version set to 0.0.1
CedricGuillemet ce9bc16
feedback
CedricGuillemet 386b677
tabs replaced with spaces
CedricGuillemet de255c6
missing java setup
CedricGuillemet 6b4b76d
tar command
CedricGuillemet File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,154 @@ | ||
name: 'Append Release' | ||
|
||
on: | ||
workflow_call: | ||
inputs: | ||
release-name: | ||
required: true | ||
type: string | ||
is-preview: | ||
required: true | ||
type: boolean | ||
jobs: | ||
Build: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Download Assembled Folder | ||
uses: actions/download-artifact@v2 | ||
with: | ||
name: 'Assembled' | ||
path: Package/react-native | ||
|
||
- name: Compress Package react-native | ||
run: | | ||
tar --exclude='readme.md' --exclude='package.json' -czvf react-native.tar.gz -C Package/react-native/ . | ||
|
||
- name: Download Assembled-BaseKit-iOSAndroid 0.69 Folder | ||
uses: actions/download-artifact@v2 | ||
with: | ||
name: 'Assembled-BaseKit-iOSAndroid0.69' | ||
path: Package/iOSAndroid0.69 | ||
- name: Compress Package iOSAndroid0.69 | ||
uses: a7ul/tar-action@v1.1.3 | ||
id: compressiosandroid069 | ||
with: | ||
command: c | ||
cwd: Package/iOSAndroid0.69/ | ||
files: | | ||
android | ||
ios | ||
react-native-babylon.podspec | ||
outPath: iOSAndroid0.69.tar.gz | ||
|
||
- name: Download Assembled-BaseKit-iOSAndroid 0.70 Folder | ||
uses: actions/download-artifact@v2 | ||
with: | ||
name: 'Assembled-BaseKit-iOSAndroid0.70' | ||
path: Package/iOSAndroid0.70 | ||
- name: Compress Package iOSAndroid0.70 | ||
uses: a7ul/tar-action@v1.1.3 | ||
id: compressiosandroid070 | ||
with: | ||
command: c | ||
cwd: Package/iOSAndroid0.70/ | ||
files: | | ||
android | ||
ios | ||
react-native-babylon.podspec | ||
outPath: iOSAndroid0.70.tar.gz | ||
|
||
- name: Download Assembled-BaseKit-iOSAndroid 0.71 Folder | ||
uses: actions/download-artifact@v2 | ||
with: | ||
name: 'Assembled-BaseKit-iOSAndroid0.71' | ||
path: Package/iOSAndroid0.71 | ||
- name: Compress Package iOSAndroid0.71 | ||
uses: a7ul/tar-action@v1.1.3 | ||
id: compressiosandroid071 | ||
with: | ||
command: c | ||
cwd: Package/iOSAndroid0.71/ | ||
files: | | ||
android | ||
ios | ||
react-native-babylon.podspec | ||
outPath: iOSAndroid0.71.tar.gz | ||
|
||
- name: Download Assembled-BaseKit-Windows 0.69 Folder | ||
uses: actions/download-artifact@v2 | ||
with: | ||
name: 'Assembled-BaseKit-Windows0.69' | ||
path: Package/Windows0.69 | ||
- name: Compress Package Windows0.69 | ||
uses: a7ul/tar-action@v1.1.3 | ||
id: compresswindows069 | ||
with: | ||
command: c | ||
cwd: Package/Windows0.69/ | ||
files: | | ||
windows | ||
index.ts | ||
outPath: Windows0.69.tar.gz | ||
|
||
- name: Download Assembled-BaseKit-Windows 0.70 Folder | ||
uses: actions/download-artifact@v2 | ||
with: | ||
name: 'Assembled-BaseKit-Windows0.70' | ||
path: Package/Windows0.70 | ||
- name: Compress Package Windows0.70 | ||
uses: a7ul/tar-action@v1.1.3 | ||
id: compresswindows070 | ||
with: | ||
command: c | ||
cwd: Package/Windows0.70/ | ||
files: | | ||
windows | ||
index.ts | ||
outPath: Windows0.70.tar.gz | ||
|
||
- name: Download Assembled-BaseKit-Windows 0.71 Folder | ||
uses: actions/download-artifact@v2 | ||
with: | ||
name: 'Assembled-BaseKit-Windows0.71' | ||
path: Package/Windows0.71 | ||
- name: Compress Package Windows0.71 | ||
uses: a7ul/tar-action@v1.1.3 | ||
id: compresswindows071 | ||
with: | ||
command: c | ||
cwd: Package/Windows0.71/ | ||
files: | | ||
windows | ||
index.ts | ||
outPath: Windows0.71.tar.gz | ||
|
||
- name: Preview Release | ||
if: ${{ inputs.is-preview == true }} | ||
uses: softprops/action-gh-release@v1 | ||
with: | ||
files: | | ||
react-native.tar.gz | ||
Windows0.69.tar.gz | ||
Windows0.70.tar.gz | ||
Windows0.71.tar.gz | ||
iOSAndroid0.69.tar.gz | ||
iOSAndroid0.70.tar.gz | ||
iOSAndroid0.71.tar.gz | ||
tag_name: ${{ inputs.release-name }} | ||
name: ${{ inputs.release-name }} | ||
body: "Preview release for ${{ inputs.release-name }}" | ||
bghgary marked this conversation as resolved.
Show resolved
Hide resolved
|
||
draft: true | ||
prerelease: true | ||
|
||
- name: Release | ||
if: ${{ inputs.is-preview == false }} | ||
uses: softprops/action-gh-release@v1 | ||
with: | ||
files: | | ||
react-native.tar.gz | ||
Windows0.69.tar.gz | ||
Windows0.70.tar.gz | ||
Windows0.71.tar.gz | ||
iOSAndroid0.69.tar.gz | ||
iOSAndroid0.70.tar.gz | ||
iOSAndroid0.71.tar.gz |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
*.pbxproj -text |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
# OSX | ||
# | ||
.DS_Store | ||
|
||
# node.js | ||
# | ||
node_modules/ | ||
npm-debug.log | ||
yarn-error.log | ||
|
||
# Xcode | ||
# | ||
build/ | ||
*.pbxuser | ||
!default.pbxuser | ||
*.mode1v3 | ||
!default.mode1v3 | ||
*.mode2v3 | ||
!default.mode2v3 | ||
*.perspectivev3 | ||
!default.perspectivev3 | ||
xcuserdata | ||
*.xccheckout | ||
*.moved-aside | ||
DerivedData | ||
*.hmap | ||
*.ipa | ||
*.xcuserstate | ||
project.xcworkspace | ||
|
||
# Android/IntelliJ | ||
# | ||
build/ | ||
.idea | ||
.gradle | ||
local.properties | ||
*.iml | ||
|
||
# BUCK | ||
buck-out/ | ||
\.buckd/ | ||
*.keystore | ||
|
||
# CMake | ||
CMakeFiles | ||
CMakeScripts | ||
CMakeCache.txt | ||
cmake_install.cmake | ||
ReactNativeBabylon.xcodeproj | ||
*.tgz | ||
jsi |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,60 @@ | ||
# OSX | ||
# | ||
.DS_Store | ||
|
||
# node.js | ||
# | ||
node_modules/ | ||
npm-debug.log | ||
yarn-error.log | ||
|
||
# Xcode | ||
# | ||
build/ | ||
*.pbxuser | ||
!default.pbxuser | ||
*.mode1v3 | ||
!default.mode1v3 | ||
*.mode2v3 | ||
!default.mode2v3 | ||
*.perspectivev3 | ||
!default.perspectivev3 | ||
xcuserdata | ||
*.xccheckout | ||
*.moved-aside | ||
DerivedData | ||
*.hmap | ||
*.ipa | ||
*.xcuserstate | ||
project.xcworkspace | ||
|
||
# Android/IntelliJ | ||
# | ||
build/ | ||
.idea | ||
.gradle | ||
local.properties | ||
*.iml | ||
|
||
# BUCK | ||
buck-out/ | ||
\.buckd/ | ||
*.keystore | ||
|
||
# CMake | ||
CMakeFiles | ||
CMakeScripts | ||
CMakeCache.txt | ||
cmake_install.cmake | ||
ReactNativeBabylon.xcodeproj | ||
*.tgz | ||
|
||
# Package-specific ignores | ||
#submodules/BabylonNative/Apps | ||
submodules/BabylonNative/Dependencies/bgfx.cmake/bgfx/examples/* | ||
!submodules/BabylonNative/Dependencies/bgfx.cmake/bgfx/examples/common | ||
submodules/BabylonNative/Dependencies/glslang/Test | ||
submodules/BabylonNative/Dependencies/xr/Dependencies/arcore-android-sdk/media | ||
submodules/BabylonNative/Dependencies/xr/Dependencies/arcore-android-sdk/tools | ||
submodules/BabylonNative/Dependencies/xr/Dependencies/arcore-android-sdk/assets | ||
submodules/BabylonNative/Dependencies/xr/Dependencies/arcore-android-sdk/samples |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.