skill system #16
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
name: Build For Windows | |
on: | |
push: | |
branches: [feat*] | |
pull_request: | |
branches: [main, next, pu*] # those branches cannnot be pushed directly | |
env: | |
SRC_DIR: src # Souce Dir | |
TEST_DIR: test # Another temp dir for test | |
jobs: | |
StandaloneWindows_Build: | |
name: StandaloneWindows_Build | |
runs-on: windows-latest # try change to linux for build speed | |
environment: Unity | |
steps: | |
# Check | |
- name: Checkout project | |
uses: actions/checkout@v4 | |
with: | |
lfs: true | |
# Cache | |
- name: Cache | |
uses: actions/cache@v3 | |
with: | |
projectPath: ${{ env.SRC_DIR}} | |
path: Library | |
key: Library-${{ hashFiles('Assets/**', 'Packages/**', 'ProjectSettings/**') }} | |
restore-keys: | | |
Library- | |
# Run Test In Another Dir For A Clean Workspace | |
- run: robocopy ${{env.SRC_DIR}} ${{env.TEST_DIR}} /E | |
continue-on-error: true | |
- name: Run tests | |
uses: game-ci/unity-test-runner@v4 | |
env: | |
UNITY_LICENSE: ${{ secrets.UNITY_LICENSE }} | |
UNITY_EMAIL: ${{ secrets.UNITY_EMAIL }} | |
UNITY_PASSWORD: ${{ secrets.UNITY_PASSWORD }} | |
with: | |
githubToken: ${{ secrets.GITHUB_TOKEN}} | |
# customImage: 'unityci/editor:windows-2022.3.42f1-base-3.1.0' | |
projectPath: ${{ env.TEST_DIR }} | |
# For A Clean Git WorkSpace | |
# - run: rd -Recurse -Force ${{env.TEST_DIR}} | |
- run: git config --global user.email "lyt.0628@qq.com" | |
- run: git config --global user.name "lyt0628" | |
- run: git add . | |
- run: git commit -m "tmp" | |
# Build | |
- name: Build project | |
uses: game-ci/unity-builder@v4 | |
env: | |
UNITY_LICENSE: ${{ secrets.UNITY_LICENSE }} | |
UNITY_EMAIL: ${{ secrets.UNITY_EMAIL }} | |
UNITY_PASSWORD: ${{ secrets.UNITY_PASSWORD }} | |
with: | |
targetPlatform: StandaloneWindows | |
customImage: 'unityci/editor:windows-2022.3.42f1-base-3.1.0' | |
projectPath: ${{ env.SRC_DIR}} | |
# Output | |
- uses: actions/upload-artifact@v3 | |
with: | |
name: Build_StandaloneWindows | |
path: build |