From aa19332a3026f77209bd22ddd48cd503c8802225 Mon Sep 17 00:00:00 2001 From: Ben Schwartz Date: Thu, 19 Jan 2023 16:09:02 -0500 Subject: [PATCH] Update Apple CI --- .github/workflows/build_and_test.yml | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build_and_test.yml b/.github/workflows/build_and_test.yml index daaa850..a00ed37 100644 --- a/.github/workflows/build_and_test.yml +++ b/.github/workflows/build_and_test.yml @@ -62,11 +62,16 @@ jobs: - name: Set XCode Version run: sudo xcode-select -switch /Applications/Xcode_13.3.app + - name: Change Go version to 1.18 + uses: actions/setup-go@v3 + with: + go-version: '^1.18' + - name: Build for Apple platforms - # Change the Go version to 1.18. (Default is 1.17.) - run: | - env PATH="${GOROOT_1_18_X64}:${PATH}" - make apple + run: make apple + + - name: Build future Apple library + run: make apple_future android: name: Android Build