chore: fix macos build (#1609)
Signed-off-by: Jim Ma <majinjing3@gmail.com> Co-authored-by: Gaius <gaius.qi@gmail.com>
This commit is contained in:
parent
346cc0649e
commit
237ac122dd
|
|
@ -51,7 +51,10 @@ jobs:
|
||||||
build:
|
build:
|
||||||
name: Build
|
name: Build
|
||||||
timeout-minutes: 10
|
timeout-minutes: 10
|
||||||
runs-on: ubuntu-latest
|
strategy:
|
||||||
|
matrix:
|
||||||
|
os: [ubuntu-latest, macos-latest]
|
||||||
|
runs-on: ${{ matrix.os }}
|
||||||
needs: [test]
|
needs: [test]
|
||||||
steps:
|
steps:
|
||||||
- name: Set up Go
|
- name: Set up Go
|
||||||
|
|
@ -65,8 +68,11 @@ jobs:
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
|
|
||||||
- name: Build manager console assets
|
- name: Build manager console assets
|
||||||
|
uses: docker-practice/actions-setup-docker@v1
|
||||||
run: |-
|
run: |-
|
||||||
make build-manager-console
|
make build-manager-console
|
||||||
|
|
||||||
- name: Build
|
- name: Build
|
||||||
run: make build
|
uses: docker-practice/actions-setup-docker@v1
|
||||||
|
run: |-
|
||||||
|
make build
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue