-
-
Notifications
You must be signed in to change notification settings - Fork 310
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'feat/built-in-lut' of github.com:zhuxudong/engine into …
…feat/built-in-lut
- Loading branch information
Showing
190 changed files
with
7,521 additions
and
2,148 deletions.
There are no files selected for viewing
This file contains 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 |
---|---|---|
|
@@ -15,7 +15,8 @@ jobs: | |
contents: write | ||
id-token: write | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Checkout Engine repo | ||
uses: actions/checkout@v4 | ||
with: | ||
fetch-depth: 0 | ||
|
||
|
@@ -32,11 +33,123 @@ jobs: | |
registry-url: https://registry.npmjs.org/ | ||
cache: pnpm | ||
|
||
- name: Build | ||
- name: Build Engine | ||
run: pnpm b:all | ||
|
||
- name: Release current monorepo | ||
uses: galacean/[email protected] | ||
- name: Cache Engine Package | ||
uses: actions/cache@v3 | ||
with: | ||
path: ./packages/galacean | ||
key: ${{ runner.os }}-engine-${{ github.sha }} | ||
|
||
- name: Checkout Sub-repositories | ||
run: | | ||
git clone https://github.com/galacean/engine-toolkit.git | ||
git clone https://github.com/galacean/engine-lottie.git | ||
git clone https://github.com/galacean/engine-spine.git -b dev/4.2 | ||
- name: Install and Link Engine and Build for Toolkit | ||
working-directory: ./engine-toolkit | ||
run: | | ||
pnpm install | ||
pnpm link ../packages/galacean | ||
pnpm b:all | ||
- name: Install and Link Engine and Build for Lottie | ||
working-directory: ./engine-lottie | ||
run: | | ||
pnpm install --ignore-workspace | ||
pnpm link ../packages/galacean | ||
pnpm build | ||
- name: Install and Link Engine and Build for Spine | ||
working-directory: ./engine-spine | ||
run: | | ||
pnpm install --ignore-workspace --frozen-lockfile=false | ||
pnpm link ../packages/galacean | ||
pnpm build | ||
- name: Structure Temp Directory | ||
run: | | ||
mkdir -p ${{ github.workspace }}/temp | ||
mkdir -p ${{ github.workspace }}/temp/@galacean/engine | ||
cp -r ${{ github.workspace }}/packages/galacean/dist ${{ github.workspace }}/temp/@galacean/engine | ||
mkdir -p ${{ github.workspace }}/temp/@galacean/engine-xr | ||
cp -r ${{ github.workspace }}/packages/xr/dist ${{ github.workspace }}/temp/@galacean/engine-xr | ||
mkdir -p ${{ github.workspace }}/temp/@galacean/engine-shaderlab | ||
cp -r ${{ github.workspace }}/packages/shader-lab/dist ${{ github.workspace }}/temp/@galacean/engine-shaderlab | ||
mkdir -p ${{ github.workspace }}/temp/@galacean/engine-shader-shaderlab | ||
cp -r ${{ github.workspace }}/packages/shader-shaderlab/dist ${{ github.workspace }}/temp/@galacean/engine-shader-shaderlab | ||
mkdir -p ${{ github.workspace }}/temp/@galacean/engine-physics-lite | ||
cp -r ${{ github.workspace }}/packages/physics-lite/dist ${{ github.workspace }}/temp/@galacean/engine-physics-lite | ||
mkdir -p ${{ github.workspace }}/temp/@galacean/engine-physics-physx | ||
cp -r ${{ github.workspace }}/packages/physics-physx/dist ${{ github.workspace }}/temp/@galacean/engine-physics-physx | ||
mkdir -p ${{ github.workspace }}/temp/@galacean/engine-toolkit | ||
cp -r ${{ github.workspace }}/engine-toolkit/packages/galacean-engine-toolkit/dist/umd ${{ github.workspace }}/temp/@galacean/engine-toolkit | ||
mkdir -p ${{ github.workspace }}/temp/@galacean/engine-lottie | ||
cp -r ${{ github.workspace }}/engine-lottie/dist ${{ github.workspace }}/temp/@galacean/engine-lottie | ||
mkdir -p ${{ github.workspace }}/temp/@galacean/engine-spine | ||
cp -r ${{ github.workspace }}/engine-spine/dist ${{ github.workspace }}/temp/@galacean/engine-spine | ||
find ${{ github.workspace }}/temp | ||
- name: Ensure Adapter Directory Exists | ||
run: mkdir -p ${{ github.workspace }}/platform-adapter/dist | ||
|
||
# Create a mock package.json to specify the path and version of the adapter build result when syncing with the CDN later. | ||
# name is set to @galacean/engine-platform-adapter-release to avoid conflicts with the real package.json | ||
# version is set to the version of the engine package | ||
- name: Create package.json for platform-adapter | ||
run: | | ||
VERSION=$(jq -r '.version' ${{ github.workspace }}/packages/galacean/package.json) | ||
echo "{\"name\": \"@galacean/engine-platform-adapter-release\", \"version\": \"$VERSION\"}" > ${{ github.workspace }}/platform-adapter/package.json | ||
cat ${{ github.workspace }}/platform-adapter/package.json | ||
- name: Bundle polyfill and engine | ||
uses: galacean/platform-adapter@main | ||
env: | ||
ADAPTER_BUNDLE_SETTINGS: | | ||
{ | ||
"polyfill": true, | ||
"engine": [ | ||
"${{ github.workspace }}/temp/@galacean/engine/dist/browser.js", | ||
"${{ github.workspace }}/temp/@galacean/engine-xr/dist/browser.js", | ||
"${{ github.workspace }}/temp/@galacean/engine-shaderlab/dist/browser.js", | ||
"${{ github.workspace }}/temp/@galacean/engine-shader-shaderlab/dist/browser.js", | ||
"${{ github.workspace }}/temp/@galacean/engine-physics-lite/dist/browser.js", | ||
"${{ github.workspace }}/temp/@galacean/engine-physics-physx/dist/browser.js", | ||
"${{ github.workspace }}/temp/@galacean/engine-toolkit/umd/browser.js", | ||
"${{ github.workspace }}/temp/@galacean/engine-lottie/dist/browser.js", | ||
"${{ github.workspace }}/temp/@galacean/engine-spine/dist/browser.js" | ||
], | ||
"wasm": [ | ||
"${{ github.workspace }}/packages/physics-physx/libs/physx.release.wasm" | ||
], | ||
"jsWASMLoader": [ | ||
"${{ github.workspace }}/packages/physics-physx/libs/physx.release.js" | ||
], | ||
"outputDir": "${{ github.workspace }}/platform-adapter/dist" | ||
} | ||
- name: Print Adapter Bundle | ||
run: find ${{ github.workspace }}/platform-adapter -type f | ||
|
||
- name: Release engine packages and Sync to CDN | ||
uses: galacean/publish@main | ||
if: success() || failure() | ||
env: | ||
NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}} | ||
NPM_CONFIG_PROVENANCE: true | ||
OASISBE_UPLOAD_URL: https://oasisbe.alipay.com/api/file/no-auth/crypto/upload | ||
OASISBE_REQUEST_HEADER: ${{secrets.OASISBE_REQUEST_HEADER}} | ||
OASISBE_PUBLIC_KEY: ${{secrets.OASISBE_PUBLIC_KEY}} | ||
|
||
- name: Sync Platform Adapter to CDN | ||
uses: galacean/publish@main | ||
if: success() || failure() | ||
with: | ||
publish: false | ||
packages: | | ||
platform-adapter | ||
env: | ||
NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}} | ||
NPM_CONFIG_PROVENANCE: true | ||
|
This file contains 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 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 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 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 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 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
Oops, something went wrong.