Skip to content
This repository has been archived by the owner on Apr 16, 2024. It is now read-only.

Commit

Permalink
Disable mac runner
Browse files Browse the repository at this point in the history
  • Loading branch information
Franc Pape committed Apr 10, 2024
1 parent 2c4361c commit 9b05be1
Showing 1 changed file with 51 additions and 51 deletions.
102 changes: 51 additions & 51 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,29 +64,29 @@ jobs:
- run: |
go get github.com/antlr4-go/antlr/v4
go test ./cmd/a2l/...
test-mac:
runs-on: macos-latest-xlarge
needs:
- generate-antlr-sources
- generate-grpc-sources
steps:
- uses: actions/checkout@v4
- uses: actions/download-artifact@v4
with:
name: antlr4
path: pkg/a2l/parser
- uses: actions/download-artifact@v4
with:
name: grpc
path: pkg/a2l
- name: Set up Go 1.21
uses: actions/setup-go@v5
with:
go-version: "1.21"
cache: true
- run: |
go get github.com/antlr4-go/antlr/v4
go test ./cmd/a2l/...
# test-mac:
# runs-on: macos-latest-xlarge
# needs:
# - generate-antlr-sources
# - generate-grpc-sources
# steps:
# - uses: actions/checkout@v4
# - uses: actions/download-artifact@v4
# with:
# name: antlr4
# path: pkg/a2l/parser
# - uses: actions/download-artifact@v4
# with:
# name: grpc
# path: pkg/a2l
# - name: Set up Go 1.21
# uses: actions/setup-go@v5
# with:
# go-version: "1.21"
# cache: true
# - run: |
# go get github.com/antlr4-go/antlr/v4
# go test ./cmd/a2l/...
build-linux:
runs-on: ubuntu-22.04
needs:
Expand Down Expand Up @@ -158,34 +158,34 @@ jobs:
path: |
*.dll
*.h
build-mac:
runs-on: macos-latest-xlarge
needs:
- test-mac
steps:
- uses: actions/checkout@v4
- uses: actions/download-artifact@v4
with:
name: antlr4
path: pkg/a2l/parser
- uses: actions/download-artifact@v4
with:
name: grpc
path: pkg/a2l
- name: Set up Go 1.21
uses: actions/setup-go@v5
with:
go-version: "1.21"
cache: true
- run: |
go get github.com/antlr4-go/antlr/v4
go build --buildmode=c-shared -o a2l_grpc_$(go env GOOS)_$(go env GOARCH).dylib ./cmd/a2l/a2l.go
- uses: actions/upload-artifact@v4
with:
name: mac
path: |
*.dylib
*.h
# build-mac:
# runs-on: macos-latest-xlarge
# needs:
# - test-mac
# steps:
# - uses: actions/checkout@v4
# - uses: actions/download-artifact@v4
# with:
# name: antlr4
# path: pkg/a2l/parser
# - uses: actions/download-artifact@v4
# with:
# name: grpc
# path: pkg/a2l
# - name: Set up Go 1.21
# uses: actions/setup-go@v5
# with:
# go-version: "1.21"
# cache: true
# - run: |
# go get github.com/antlr4-go/antlr/v4
# go build --buildmode=c-shared -o a2l_grpc_$(go env GOOS)_$(go env GOARCH).dylib ./cmd/a2l/a2l.go
# - uses: actions/upload-artifact@v4
# with:
# name: mac
# path: |
# *.dylib
# *.h
export-protobuf-definitions:
runs-on: ubuntu-22.04
steps:
Expand Down

0 comments on commit 9b05be1

Please sign in to comment.