Skip to content

Commit

Permalink
chore: CI use orka for macos agents (#56)
Browse files Browse the repository at this point in the history
* chore: CI use orka for macos agents

* Chore: Disable macOS builds with matrix exclusion. See #55

* Chore: Removed go 1.17 from build matrix. See #55

* Update .ci/Jenkinsfile

Co-authored-by: Victor Martinez <[email protected]>

* Update .ci/Jenkinsfile

Co-authored-by: Victor Martinez <[email protected]>

Co-authored-by: Victor Martinez <[email protected]>
  • Loading branch information
pazone and v1v authored Aug 4, 2022
1 parent 63b21b9 commit 0e62d33
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 24 deletions.
13 changes: 12 additions & 1 deletion .ci/Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand All @@ -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') {
Expand Down
23 changes: 0 additions & 23 deletions .github/workflows/macos.yml

This file was deleted.

0 comments on commit 0e62d33

Please sign in to comment.