Skip to content

Commit

Permalink
Remove CLI binary related workflows.
Browse files Browse the repository at this point in the history
  • Loading branch information
tmaklin committed Nov 18, 2024
1 parent e6b888f commit 9e51504
Show file tree
Hide file tree
Showing 5 changed files with 2 additions and 233 deletions.
51 changes: 0 additions & 51 deletions .github/deploy/build_aarch64-apple-darwin.sh

This file was deleted.

51 changes: 0 additions & 51 deletions .github/deploy/build_x86_64-apple-darwin.sh

This file was deleted.

4 changes: 2 additions & 2 deletions .github/workflows/build_and_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
run: rustup update ${{ matrix.toolchain }} && rustup default ${{ matrix.toolchain }}

- name: Build binary
run: cargo build --features cli --verbose
run: cargo build --all-features --verbose

- name: Run unit and integration tests
run: cargo test --no-fail-fast --verbose
run: cargo test --all-features --no-fail-fast --verbose
99 changes: 0 additions & 99 deletions .github/workflows/build_artifacts.yml

This file was deleted.

30 changes: 0 additions & 30 deletions .github/workflows/make_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,32 +15,6 @@ jobs:
environment: Make kbo release

steps:
- name: Download artifacts
uses: dawidd6/action-download-artifact@v6
with:
workflow: build_artifacts.yml
workflow_conclusion: success

- name: Organise files
shell: bash
run: |
mv kbo-candidate-x86_64-unknown-linux-musl/kbo-candidate-x86_64-unknown-linux-musl.tar.gz ./
mv kbo-candidate-x86_64-apple-darwin/kbo-candidate-x86_64-apple-darwin.tar.gz ./
mv kbo-candidate-aarch64-apple-darwin/kbo-candidate-aarch64-apple-darwin.tar.gz ./
- name: Rename mac artifacts
shell: bash
run: |
tar -zxvf kbo-candidate-x86_64-apple-darwin.tar.gz && mv kbo-candidate-x86_64-apple-darwin kbo-${{ github.ref_name }}-x86_64-apple-darwin && tar -zcvf kbo-candidate-x86_64-apple-darwin.tar.gz kbo-${{ github.ref_name }}-x86_64-apple-darwin
tar -zxvf kbo-candidate-aarch64-apple-darwin.tar.gz && mv kbo-candidate-aarch64-apple-darwin kbo-${{ github.ref_name }}-aarch64-apple-darwin && tar -zcvf kbo-candidate-aarch64-apple-darwin.tar.gz kbo-${{ github.ref_name }}-aarch64-apple-darwin
- name: Designate version
shell: bash
run: |
mv kbo-candidate-x86_64-unknown-linux-musl.tar.gz kbo-${{ github.ref_name }}-x86_64-linux-musl.tar.gz
mv kbo-candidate-x86_64-apple-darwin.tar.gz kbo-${{ github.ref_name }}-x86_64-apple-darwin.tar.gz
mv kbo-candidate-aarch64-apple-darwin.tar.gz kbo-${{ github.ref_name }}-aarch64-apple-darwin.tar.gz
- name: Get current date
id: date
run: echo "::set-output name=date::$(date +'%d %B %Y')"
Expand All @@ -54,7 +28,3 @@ jobs:
prerelease: false
fail_on_unmatched_files: true
generate_release_notes: true
files: |
kbo-${{ github.ref_name }}-x86_64-linux-musl.tar.gz
kbo-${{ github.ref_name }}-x86_64-apple-darwin.tar.gz
kbo-${{ github.ref_name }}-aarch64-apple-darwin.tar.gz

0 comments on commit 9e51504

Please sign in to comment.