From 63b21b9c8036cab9b0de6c7979ed106d9d972987 Mon Sep 17 00:00:00 2001 From: Victor Martinez Date: Tue, 10 May 2022 15:38:13 +0100 Subject: [PATCH] ci: use github actions macos (#53) * ci: use github actions macos * Update .github/workflows/macos.yml --- .ci/Jenkinsfile | 2 +- .github/workflows/macos.yml | 23 +++++++++++++++++++++++ 2 files changed, 24 insertions(+), 1 deletion(-) create mode 100644 .github/workflows/macos.yml diff --git a/.ci/Jenkinsfile b/.ci/Jenkinsfile index d3f678c..ee847dd 100644 --- a/.ci/Jenkinsfile +++ b/.ci/Jenkinsfile @@ -43,7 +43,7 @@ pipeline { } axis { name 'PLATFORM' - values 'ubuntu-18 && immutable', 'macosx&&x86_64', 'windows-2019 && immutable' + values 'ubuntu-18 && immutable', 'windows-2019 && immutable' } } excludes { diff --git a/.github/workflows/macos.yml b/.github/workflows/macos.yml new file mode 100644 index 0000000..c8d7999 --- /dev/null +++ b/.github/workflows/macos.yml @@ -0,0 +1,23 @@ +name: macos + +on: + push: + branches: + - main + pull_request: + branches: + - main + +jobs: + macos: + runs-on: macos-latest + steps: + - uses: actions/checkout@v2 + + - name: install Go + uses: actions/setup-go@v3 + with: + go-version: '>=1.17.0' + + - name: Run test + run: .ci/test.sh