From 5a6f0d2e15cff4046a6649218772af69286360fa Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20Sch=C3=B6nauer?= <37108907+DottoDev@users.noreply.github.com> Date: Fri, 28 Oct 2022 18:52:00 +0000 Subject: [PATCH] Revert CD changes --- .github/workflows/release_win_osx.yml | 125 +------------------------- 1 file changed, 2 insertions(+), 123 deletions(-) diff --git a/.github/workflows/release_win_osx.yml b/.github/workflows/release_win_osx.yml index 8444c1a7..a14bb1ff 100644 --- a/.github/workflows/release_win_osx.yml +++ b/.github/workflows/release_win_osx.yml @@ -6,12 +6,11 @@ on: types: [ created ] jobs: - - x86_64_win_macos_linux: - name: "x86_64 default Pipeline" + build: strategy: fail-fast: false matrix: - platform: [ macos-latest, windows-latest, ubuntu-latest] + platform: [ macos-latest, windows-latest ] runs-on: ${{ matrix.platform }} steps: - uses: actions/checkout@v2 @@ -58,123 +57,3 @@ jobs: uses: softprops/action-gh-release@v1 with: files: assets/* - - x86_64_freebsd: - name: "FreeBSD x86_64" - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v2 - - uses: actions-rs/toolchain@v1 - with: - toolchain: stable - target: x86_64-unknown-freebsd - override: true - - uses: actions-rs/cargo@v1 - name: Build - with: - use-cross: true - command: build - args: --target x86_64-unknown-freebsd --release --all-features - - run: | - cargo install default-target - mkdir assets - FILENAME=topgrade-${{github.event.release.tag_name}}-$(x86_64-unknown-freebsd) - mv target/release/topgrade assets - cd assets - tar --format=ustar -czf $FILENAME.tar.gz topgrade - rm topgrade - ls . - shell: bash - - name: Release - uses: softprops/action-gh-release@v1 - with: - files: assets/* - x86_64_linux_musl: - name: "Linux Musl x86_64" - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v2 - - uses: actions-rs/toolchain@v1 - with: - toolchain: stable - target: x86_64-unknown-linux-musl - override: true - - uses: actions-rs/cargo@v1 - name: Build - with: - use-cross: true - command: build - args: --target x86_64-unknown-linux-musl --release --all-features - - run: | - cargo install default-target - mkdir assets - FILENAME=topgrade-${{github.event.release.tag_name}}-$(x86_64-unknown-linux-musl) - mv target/release/topgrade assets - cd assets - tar --format=ustar -czf $FILENAME.tar.gz topgrade - rm topgrade - ls . - shell: bash - - name: Release - uses: softprops/action-gh-release@v1 - with: - files: assets/* - - aarch64_linux_gnu: - name: "Linux GNU aarch64" - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v2 - - uses: actions-rs/toolchain@v1 - with: - toolchain: stable - target: aarch64-unknown-linux-gnu - override: true - - uses: actions-rs/cargo@v1 - name: Build - with: - use-cross: true - command: build - args: --target aarch64-unknown-linux-gnu --release --all-features - - run: | - cargo install default-target - mkdir assets - FILENAME=topgrade-${{github.event.release.tag_name}}-$(aarch64-unknown-linux-gnu) - mv target/release/topgrade assets - cd assets - tar --format=ustar -czf $FILENAME.tar.gz topgrade - rm topgrade - ls . - shell: bash - - name: Release - uses: softprops/action-gh-release@v1 - with: - files: assets/* - - aarch64_linux_musl: - name: "Linux Musl aarch64" - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v2 - - uses: actions-rs/toolchain@v1 - with: - toolchain: stable - target: aarch64-unknown-linux-musl - override: true - - uses: actions-rs/cargo@v1 - name: Build - with: - use-cross: true - command: build - args: --target aarch64-unknown-linux-musl --release --all-features - - run: | - cargo install default-target - mkdir assets - FILENAME=topgrade-${{github.event.release.tag_name}}-$(aarch64-unknown-linux-musl) - mv target/release/topgrade assets - cd assets - tar --format=ustar -czf $FILENAME.tar.gz topgrade - rm topgrade - ls . - shell: bash - - name: Release - uses: softprops/action-gh-release@v1 - with: - files: assets/*