From 360556d19f9b19fc8a94824b6e3cddcfb3f9f5d3 Mon Sep 17 00:00:00 2001 From: Sam Farmer Date: Thu, 29 Oct 2020 13:01:12 -0500 Subject: [PATCH] Update main.yml --- .github/workflows/main.yml | 34 ---------------------------------- 1 file changed, 34 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 571b516..c118de2 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -67,37 +67,3 @@ jobs: with: name: Test results (all modes) path: ${{ steps.testRunner.outputs.artifactsPath }} - - build: - needs: [checklicense] - if: needs.checklicense.outputs.is_unity_license_set == 'true' - name: Build for ${{ matrix.targetPlatform }} on version ${{ matrix.unityVersion }} - runs-on: ubuntu-latest - strategy: - fail-fast: false - matrix: - targetPlatform: - - StandaloneOSX - - StandaloneWindows64 - - StandaloneLinux64 - steps: - - uses: actions/checkout@v2 - with: - lfs: true - - uses: actions/cache@v1.1.0 - with: - path: ${{ matrix.projectPath }}/Library - key: Library-${{ matrix.projectPath }}-${{ matrix.targetPlatform }} - restore-keys: | - Library-${{ matrix.projectPath }}- - Library- - - uses: webbertakken/unity-builder@v1.4 - with: - projectPath: ${{ env.PROJECT_PATH }} - unityVersion: ${{ env.UNITY_VERSION }} - targetPlatform: ${{ matrix.targetPlatform }} - customParameters: "-nographics" - - uses: actions/upload-artifact@v1 - with: - name: Build - path: build