Change the method of controlling NPC Vehicles to map_based_prediction #1403
Workflow file for this run
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: buildtest | |
on: | |
schedule: | |
- cron: 0 0 * * * | |
pull_request: | |
push: | |
branches: | |
- master | |
- main | |
workflow_dispatch: | |
jobs: | |
build_test: | |
runs-on: ubuntu-22.04 | |
strategy: | |
fail-fast: false | |
matrix: | |
target_platform: | |
- StandaloneLinux64 | |
unity_version: | |
- 2021.1.7f1 | |
steps: | |
- uses: actions/checkout@v2-beta | |
with: | |
lfs: true | |
- uses: game-ci/unity-builder@v2 | |
env: | |
UNITY_SERIAL: ${{ secrets.UNITY_SERIAL }} | |
UNITY_EMAIL: ${{ secrets.UNITY_EMAIL }} | |
UNITY_PASSWORD: ${{ secrets.UNITY_PASSWORD }} | |
with: | |
targetPlatform: ${{ matrix.target_platform }} | |
unityVersion: ${{ matrix.unity_version }} |