From 26e5be42100e24853202dbeae86732f4e1d7b878 Mon Sep 17 00:00:00 2001 From: smithclay Date: Fri, 23 Feb 2024 13:42:01 -0800 Subject: [PATCH] disable mac and windows builds --- .github/workflows/build.yml | 68 ++++++++++++++++++------------------- 1 file changed, 34 insertions(+), 34 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 6eb5282..67363d1 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -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/builder@v0.95.0 - - 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/builder@v0.95.0 - - 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/builder@v0.95.0 +# - 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/builder@v0.95.0 +# - name: Build +# working-directory: ./collector +# run: make build-windows