From f425d2436470418380044660c77c0c24645a7b86 Mon Sep 17 00:00:00 2001 From: Danny Adams Date: Fri, 20 Jan 2023 11:11:11 -0500 Subject: [PATCH 1/4] Update support library to beta. --- src/internal/connector/support/m365Support_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/internal/connector/support/m365Support_test.go b/src/internal/connector/support/m365Support_test.go index dedde3536..387e79b7d 100644 --- a/src/internal/connector/support/m365Support_test.go +++ b/src/internal/connector/support/m365Support_test.go @@ -3,7 +3,7 @@ package support import ( "testing" - "github.com/microsoftgraph/msgraph-sdk-go/models" + "github.com/microsoftgraph/msgraph-beta-sdk-go/models" "github.com/stretchr/testify/assert" "github.com/stretchr/testify/require" "github.com/stretchr/testify/suite" From c0112d917ed1d1fbca303f854e52e5af8f9d4111 Mon Sep 17 00:00:00 2001 From: Danny Adams Date: Fri, 20 Jan 2023 11:21:35 -0500 Subject: [PATCH 2/4] Revert back to original ci.yml. --- .github/workflows/ci.yml | 6 ------ 1 file changed, 6 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index ac01fe55b..a685d5e03 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -42,12 +42,6 @@ jobs: steps: - uses: actions/checkout@v3 - ## increases swap space for beta and v.1.0 - - name: Set Swap Space - uses: pierotofy/set-swap-space@master - with: - swap-size-gb: 12 - # single setup and sum cache handling here. # the results will cascade onto both testing and linting. - name: Setup Golang with cache From 898191f9a9066109bd9876a6e271b3121e50059a Mon Sep 17 00:00:00 2001 From: Danny Adams Date: Fri, 20 Jan 2023 11:23:08 -0500 Subject: [PATCH 3/4] Removal of whitespace. --- .github/workflows/ci.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index a685d5e03..4099e4b64 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -41,7 +41,6 @@ jobs: working-directory: src steps: - uses: actions/checkout@v3 - # single setup and sum cache handling here. # the results will cascade onto both testing and linting. - name: Setup Golang with cache From f44607ca739c6448d74e00c48e7125e44bffb9a1 Mon Sep 17 00:00:00 2001 From: Danny Adams Date: Fri, 20 Jan 2023 11:40:39 -0500 Subject: [PATCH 4/4] Additonal swap space required for CI compilation. --- .github/workflows/ci.yml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 4099e4b64..608934ab7 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -41,6 +41,13 @@ jobs: working-directory: src steps: - uses: actions/checkout@v3 + + ## increases swap space for msgraph-beta-sdk-go + - name: Set Swap Space + uses: pierotofy/set-swap-space@master + with: + swap-size-gb: 12 + # single setup and sum cache handling here. # the results will cascade onto both testing and linting. - name: Setup Golang with cache