Skip to content

Commit

Permalink
chore: comment out macos workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
hopeyen committed Jun 18, 2024
1 parent b558947 commit 8cd8284
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 27 deletions.
46 changes: 23 additions & 23 deletions .github/workflows/gen-binaries.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,26 +39,26 @@ jobs:
asset_path: ./target/release/subgraph-radio
asset_name: subgraph-radio-${{ github.event.release.tag_name }}-ubuntu
asset_content_type: binary/octet-stream
build-macos:
runs-on: macos-latest
steps:
- uses: actions/checkout@v3
- name: Setup Rust
uses: actions-rs/toolchain@v1
with:
toolchain: stable
- uses: actions/setup-go@v4
with:
go-version: "1.20.13"
- name: Build release binary
run: |
cargo build --release
- name: Upload MacOS binary
uses: actions/upload-release-asset@v1.0.1
env:
GITHUB_TOKEN: ${{ secrets.RELEASE_TOKEN }}
with:
upload_url: ${{ github.event.release.upload_url }}
asset_path: ./target/release/subgraph-radio
asset_name: subgraph-radio-${{ github.event.release.tag_name }}-macos
asset_content_type: binary/octet-stream
# build-macos:
# runs-on: macos-latest
# steps:
# - uses: actions/checkout@v3
# - name: Setup Rust
# uses: actions-rs/toolchain@v1
# with:
# toolchain: stable
# - uses: actions/setup-go@v4
# with:
# go-version: "1.20.13"
# - name: Build release binary
# run: |
# cargo build --release
# - name: Upload MacOS binary
# uses: actions/upload-release-asset@v1.0.1
# env:
# GITHUB_TOKEN: ${{ secrets.RELEASE_TOKEN }}
# with:
# upload_url: ${{ github.event.release.upload_url }}
# asset_path: ./target/release/subgraph-radio
# asset_name: subgraph-radio-${{ github.event.release.tag_name }}-macos
# asset_content_type: binary/octet-stream
8 changes: 4 additions & 4 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ jobs:
include:
- os: ubuntu-latest
toolchain: stable-x86_64-unknown-linux-gnu
- os: macos-latest
toolchain: stable-x86_64-apple-darwin
# - os: macos-latest
# toolchain: stable-x86_64-apple-darwin
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
Expand Down Expand Up @@ -49,8 +49,8 @@ jobs:
include:
- os: ubuntu-latest
toolchain: stable-x86_64-unknown-linux-gnu
- os: macos-latest
toolchain: stable-x86_64-apple-darwin
# - os: macos-latest
# toolchain: stable-x86_64-apple-darwin
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
Expand Down

0 comments on commit 8cd8284

Please sign in to comment.