From 6310ae91e2d893f93a992278049a918802078c79 Mon Sep 17 00:00:00 2001 From: Dylan Perks <11160611+Perksey@users.noreply.github.com> Date: Thu, 16 Sep 2021 17:43:22 +0100 Subject: [PATCH 1/5] Update global.json --- global.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/global.json b/global.json index 21f25390e7..4bb6d44bc5 100644 --- a/global.json +++ b/global.json @@ -1,6 +1,6 @@ { "sdk": { - "version": "6.0.100-preview.7.21379.14", + "version": "6.0.100-rc.1.21458.32", "rollForward": "major" } } From 8d728020c50cab7065cba8b24c56e6d1991e4e1b Mon Sep 17 00:00:00 2001 From: Dylan Perks <11160611+Perksey@users.noreply.github.com> Date: Thu, 16 Sep 2021 17:43:51 +0100 Subject: [PATCH 2/5] Update build.yml --- .github/workflows/build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index acbe9e885a..659eca7990 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -16,7 +16,7 @@ jobs: - name: Setup .NET 6.0 uses: actions/setup-dotnet@v1 with: - dotnet-version: 6.0.100-preview.7.21379.14 + dotnet-version: 6.0.100-rc.1.21458.32 - name: Setup .NET 5.0 uses: actions/setup-dotnet@v1 with: From c3d9ea4feee43899c1155be4b1049e5a7f963967 Mon Sep 17 00:00:00 2001 From: Dylan Perks <11160611+Perksey@users.noreply.github.com> Date: Thu, 16 Sep 2021 17:44:13 +0100 Subject: [PATCH 3/5] Update deploy.yml --- .github/workflows/deploy.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index d181f4c4ef..f6e621999e 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -15,7 +15,7 @@ jobs: - name: Setup .NET 6.0 uses: actions/setup-dotnet@v1 with: - dotnet-version: 6.0.100-preview.7.21379.14 + dotnet-version: 6.0.100-rc.1.21458.32 - name: Setup .NET 5.0 uses: actions/setup-dotnet@v1 with: From f61532d4292bda510dfcef598ef450f7e4ce6524 Mon Sep 17 00:00:00 2001 From: Dylan Perks <11160611+Perksey@users.noreply.github.com> Date: Sat, 25 Sep 2021 13:59:24 +0100 Subject: [PATCH 4/5] Ok seriously what is going on --- .github/workflows/build.yml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 659eca7990..0b277283fd 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -36,6 +36,14 @@ jobs: run: nuke Test --skip Clean Restore Compile - name: Validation Checks run: nuke ValidateSolution + - name: Upload a Build Artifact + uses: actions/upload-artifact@v2.2.4 + with: + # Artifact name + name: "src" + # A file, directory or wildcard pattern that describes what to upload + path: "src/**" + retention-days: 1 - name: Pack # TODO build native mixins such as BuildLibSilkDroid run: nuke Pack --configuration Release --msbuild-properties VersionSuffix=build${{ github.run_number }}.0 ContinuousIntegrationBuild=true --feature-sets Legacy-Android Legacy-iOS From a34e0a4b004fc4d0e0e7b160c9fed4d0dd68b0b5 Mon Sep 17 00:00:00 2001 From: Dylan Perks <11160611+Perksey@users.noreply.github.com> Date: Sat, 25 Sep 2021 15:17:53 +0100 Subject: [PATCH 5/5] Install JDK 11 as part of Build --- .github/workflows/build.yml | 13 +++++-------- 1 file changed, 5 insertions(+), 8 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 0b277283fd..5d81c6cfbe 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -13,6 +13,11 @@ jobs: - uses: actions/checkout@v2 with: submodules: 'true' + - name: Setup Java JDK 11 + uses: actions/setup-java@v2.3.0 + with: + java-version: 11 + distribution: "temurin" - name: Setup .NET 6.0 uses: actions/setup-dotnet@v1 with: @@ -36,14 +41,6 @@ jobs: run: nuke Test --skip Clean Restore Compile - name: Validation Checks run: nuke ValidateSolution - - name: Upload a Build Artifact - uses: actions/upload-artifact@v2.2.4 - with: - # Artifact name - name: "src" - # A file, directory or wildcard pattern that describes what to upload - path: "src/**" - retention-days: 1 - name: Pack # TODO build native mixins such as BuildLibSilkDroid run: nuke Pack --configuration Release --msbuild-properties VersionSuffix=build${{ github.run_number }}.0 ContinuousIntegrationBuild=true --feature-sets Legacy-Android Legacy-iOS