diff --git a/.ci/Jenkinsfile b/.ci/Jenkinsfile index ee847dd..f444baa 100644 --- a/.ci/Jenkinsfile +++ b/.ci/Jenkinsfile @@ -43,7 +43,7 @@ pipeline { } axis { name 'PLATFORM' - values 'ubuntu-18 && immutable', 'windows-2019 && immutable' + values 'ubuntu-18 && immutable', 'windows-2019 && immutable', 'macos11 && x86_64' } } excludes { @@ -57,6 +57,17 @@ pipeline { values '1.15' } } + // Mac os builds are disabled. See https://github.com/elastic/go-txfile/issues/55 + exclude { + axis { + name 'PLATFORM' + values 'macos11 && x86_64' + } + axis { + name 'GO_VERSION' + values '1.13', '1.12' + } + } } stages { stage('Test') { diff --git a/.github/workflows/macos.yml b/.github/workflows/macos.yml deleted file mode 100644 index c8d7999..0000000 --- a/.github/workflows/macos.yml +++ /dev/null @@ -1,23 +0,0 @@ -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