From 1dd0c49eecdf12fbe8f0f1b2a2b5d3a70ee0b101 Mon Sep 17 00:00:00 2001 From: Ikiru Yoshizaki <3856350+guitarrapc@users.noreply.github.com> Date: Wed, 10 Jun 2020 13:06:45 +0900 Subject: [PATCH 1/3] faet: android il2cpp --- src/UniTask/ProjectSettings/ProjectSettings.asset | 1 + 1 file changed, 1 insertion(+) diff --git a/src/UniTask/ProjectSettings/ProjectSettings.asset b/src/UniTask/ProjectSettings/ProjectSettings.asset index a94ae28..e49b1d3 100644 --- a/src/UniTask/ProjectSettings/ProjectSettings.asset +++ b/src/UniTask/ProjectSettings/ProjectSettings.asset @@ -556,6 +556,7 @@ PlayerSettings: scriptingDefineSymbols: {} platformArchitecture: {} scriptingBackend: + Android: 1 Standalone: 1 il2cppCompilerConfiguration: {} managedStrippingLevel: {} From 611d8d5513669f9425b6512e0078ad38c786121b Mon Sep 17 00:00:00 2001 From: Ikiru Yoshizaki <3856350+guitarrapc@users.noreply.github.com> Date: Wed, 10 Jun 2020 17:50:08 +0900 Subject: [PATCH 2/3] chore: filter build-unity to be run on Cysharp only --- .github/workflows/build-debug.yml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build-debug.yml b/.github/workflows/build-debug.yml index 02f3eca..5e8bf23 100644 --- a/.github/workflows/build-debug.yml +++ b/.github/workflows/build-debug.yml @@ -26,9 +26,10 @@ jobs: - run: dotnet test -c Debug ./src/UniTask.NetCoreTests/UniTask.NetCoreTests.csproj build-unity: + if: "(github.event == 'push' && github.repository_owner == 'Cysharp') || startsWith(github.event.pull_request.head.label, 'Cysharp')" strategy: matrix: - unity: ['2019.3.9f1', '2020.1.0b5'] + unity: ["2019.3.9f1", "2020.1.0b5"] include: - unity: 2019.3.9f1 license: UNITY_2019_3 @@ -66,8 +67,8 @@ jobs: run: /opt/Unity/Editor/Unity -quit -batchmode -nographics -silent-crashes -logFile -projectPath . -executeMethod PackageExporter.Export working-directory: src/UniTask - # Store artifacts. + # Store artifacts. - uses: actions/upload-artifact@v2 with: name: UniTask.unitypackage.zip - path: ./src/UniTask/*.unitypackage \ No newline at end of file + path: ./src/UniTask/*.unitypackage From be26ab249bc09c4c37e0daaba07a8401581bdc68 Mon Sep 17 00:00:00 2001 From: Ikiru Yoshizaki <3856350+guitarrapc@users.noreply.github.com> Date: Wed, 10 Jun 2020 18:09:58 +0900 Subject: [PATCH 3/3] chore: strict filter --- .github/workflows/build-debug.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build-debug.yml b/.github/workflows/build-debug.yml index 5e8bf23..d432c58 100644 --- a/.github/workflows/build-debug.yml +++ b/.github/workflows/build-debug.yml @@ -26,7 +26,7 @@ jobs: - run: dotnet test -c Debug ./src/UniTask.NetCoreTests/UniTask.NetCoreTests.csproj build-unity: - if: "(github.event == 'push' && github.repository_owner == 'Cysharp') || startsWith(github.event.pull_request.head.label, 'Cysharp')" + if: "(github.event == 'push' && github.repository_owner == 'Cysharp') || startsWith(github.event.pull_request.head.label, 'Cysharp:')" strategy: matrix: unity: ["2019.3.9f1", "2020.1.0b5"]