Skip to content

Commit

Permalink
Removing bad binaries
Browse files Browse the repository at this point in the history
  • Loading branch information
l-monninger authored Aug 5, 2023
1 parent fc17701 commit 45efe10
Showing 1 changed file with 0 additions and 63 deletions.
63 changes: 0 additions & 63 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,66 +55,3 @@ jobs:
name: binaries
path: |
$GITHUB_WORKSPACE/m1/target/release/*
- name: Set up cross-compilation environment
uses: crazy-max/ghaction-docker-buildx@v3

- name: Build binaries for macOS
run: |
cd "$GITHUB_WORKSPACE/m1"
docker buildx create --name mybuilder
docker buildx use mybuilder
docker buildx inspect --bootstrap
RUSTFLAGS="--cfg tokio_unstable" cargo build --release --target=x86_64-apple-darwin
- name: Archive macOS binaries
uses: actions/upload-artifact@v2
with:
name: macos-binaries
path: |
$GITHUB_WORKSPACE/m1/target/x86_64-apple-darwin/release/*
- name: Build binaries for Linux arm64
run: |
cd "$GITHUB_WORKSPACE/m1"
docker buildx create --name mybuilder
docker buildx use mybuilder
docker buildx inspect --bootstrap
RUSTFLAGS="--cfg tokio_unstable" cargo build --release --target=aarch64-unknown-linux-gnu
- name: Archive Linux arm64 binaries
uses: actions/upload-artifact@v2
with:
name: linux-arm64-binaries
path: |
$GITHUB_WORKSPACE/m1/target/aarch64-unknown-linux-gnu/release/*
- name: Build binaries for Linux x86_64
run: |
cd "$GITHUB_WORKSPACE/m1"
docker buildx create --name mybuilder
docker buildx use mybuilder
docker buildx inspect --bootstrap
RUSTFLAGS="--cfg tokio_unstable" cargo build --release --target=x86_64-unknown-linux-gnu
- name: Archive Linux x86_64 binaries
uses: actions/upload-artifact@v2
with:
name: linux-x86_64-binaries
path: |
$GITHUB_WORKSPACE/m1/target/x86_64-unknown-linux-gnu/release/*
- name: Build binaries for Windows
run: |
cd "$GITHUB_WORKSPACE/m1"
docker buildx create --name mybuilder
docker buildx use mybuilder
docker buildx inspect --bootstrap
RUSTFLAGS="--cfg tokio_unstable" cargo build --release --target=x86_64-pc-windows-gnu
- name: Archive Windows binaries
uses: actions/upload-artifact@v2
with:
name: windows-binaries
path: |
$GITHUB_WORKSPACE/m1/target/x86_64-pc-windows-gnu/release/*.exe

0 comments on commit 45efe10

Please sign in to comment.