Skip to content

Commit

Permalink
ci: use github actions macos (#53)
Browse files Browse the repository at this point in the history
* ci: use github actions macos

* Update .github/workflows/macos.yml
  • Loading branch information
v1v authored May 10, 2022
1 parent 4056062 commit 63b21b9
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 1 deletion.
2 changes: 1 addition & 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', 'macosx&&x86_64', 'windows-2019 && immutable'
values 'ubuntu-18 && immutable', 'windows-2019 && immutable'
}
}
excludes {
Expand Down
23 changes: 23 additions & 0 deletions .github/workflows/macos.yml
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit 63b21b9

Please sign in to comment.