Skip to content

Commit

Permalink
disable mac and windows builds
Browse files Browse the repository at this point in the history
  • Loading branch information
smithclay committed Feb 23, 2024
1 parent 899886c commit 26e5be4
Showing 1 changed file with 34 additions and 34 deletions.
68 changes: 34 additions & 34 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,37 +23,37 @@ jobs:
- name: Build
working-directory: ./collector
run: make build-linux
build_darwin:
runs-on: macos-14
steps:
- name: Checkout Sources
uses: actions/checkout@v4
- name: Setup Go
uses: actions/setup-go@v5
with:
go-version: '~1.21.5'
check-latest: true
- name: Install builder
working-directory: ./collector
run: |
go install go.opentelemetry.io/collector/cmd/[email protected]
- name: Build
working-directory: ./collector
run: make build-darwin
build_windows:
runs-on: ubuntu-20.04
steps:
- name: Checkout Sources
uses: actions/checkout@v4
- name: Setup Go
uses: actions/setup-go@v5
with:
go-version: '~1.21.5'
check-latest: true
- name: Install builder
working-directory: ./collector
run: |
go install go.opentelemetry.io/collector/cmd/[email protected]
- name: Build
working-directory: ./collector
run: make build-windows
# build_darwin:
# runs-on: macos-14
# steps:
# - name: Checkout Sources
# uses: actions/checkout@v4
# - name: Setup Go
# uses: actions/setup-go@v5
# with:
# go-version: '~1.21.5'
# check-latest: true
# - name: Install builder
# working-directory: ./collector
# run: |
# go install go.opentelemetry.io/collector/cmd/[email protected]
# - name: Build
# working-directory: ./collector
# run: make build-darwin
# build_windows:
# runs-on: ubuntu-20.04
# steps:
# - name: Checkout Sources
# uses: actions/checkout@v4
# - name: Setup Go
# uses: actions/setup-go@v5
# with:
# go-version: '~1.21.5'
# check-latest: true
# - name: Install builder
# working-directory: ./collector
# run: |
# go install go.opentelemetry.io/collector/cmd/[email protected]
# - name: Build
# working-directory: ./collector
# run: make build-windows

0 comments on commit 26e5be4

Please sign in to comment.