Skip to content

Rust -> Build & Test & Release #190

Rust -> Build & Test & Release

Rust -> Build & Test & Release #190

Workflow file for this run

name: Rust -> Build & Test & Release
on:
push:
branches: [ "main" ]
env:
CARGO_TERM_COLOR: always
GENERIC_BINARY_NAME: rust-tcp-file-transfer
jobs:
build_linux:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Build
run: cargo build --release --verbose
- name: Run tests
run: cargo test --verbose
- name: Upload Linux Binary
uses: actions/upload-artifact@v3
with:
name: $(GENERIC_BINARY_NAME)-linux-x64_86
path: target/release/*transfer
build_windows:
runs-on: windows-latest
steps:
- uses: actions/checkout@v3
- name: Build
run: cargo build --release --verbose
# - name: Run tests
# run: cargo test --verbose
# - name: Upload Windows Binary
# uses: actions/upload-artifact@v3
# with:
# name: $(GENERIC_BINARY_NAME)-windows-x64_86
# path: target/release/*transfer.exe
build_macos:
runs-on: macos-latest
steps:
- uses: actions/checkout@v3
- name: Build
run: cargo build --release --verbose
- name: Run tests
run: cargo test --verbose
- name: Upload MacOS Binary
uses: actions/upload-artifact@v3
with:
name: $(GENERIC_BINARY_NAME)-macos-x64_86
path: target/release/*transfer
release:
needs: [build_linux, build_windows, build_macos]
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- uses: actions/checkout@v3
- name: Forge a Folder
run: |
echo "$GENERIC_BINARY_NAME"
tree
mkdir Downloads
working-directory: /home/runner/work/$(GENERIC_BINARY_NAME)/$(GENERIC_BINARY_NAME)/
- uses: actions/download-artifact@v3
name: Download
with:
path: Downloads/
- name: Rename Binaries
run: |
tree Downloads/
mv Downloads/$(GENERIC_BINARY_NAME)-linux-x64_86/$(GENERIC_BINARY_NAME) Downloads/$(GENERIC_BINARY_NAME)-linux-x64_86/$(GENERIC_BINARY_NAME)-linux-x64_86
mv Downloads/$(GENERIC_BINARY_NAME)-windows-x64_86/$(GENERIC_BINARY_NAME).exe Downloads/$(GENERIC_BINARY_NAME)-windows-x64_86/$(GENERIC_BINARY_NAME)-windows-x64_86.exe
mv Downloads/$(GENERIC_BINARY_NAME)-macos-x64_86/$(GENERIC_BINARY_NAME) Downloads/$(GENERIC_BINARY_NAME)-macos-x64_86/$(GENERIC_BINARY_NAME)-macos-x64_86
- name: Git Commit SHA
id: vars
run: |
calculatedSha=$(git rev-parse --short ${{ github.sha }})
echo "short_sha=$calculatedSha" >> $GITHUB_OUTPUT
- uses: softprops/[email protected]
name: Release
with:
tag_name: ${{ steps.vars.outputs.short_sha }}
generate_release_notes: true
files: |
Downloads/$(GENERIC_BINARY_NAME)-linux-x64_86/$(GENERIC_BINARY_NAME)
Downloads/$(GENERIC_BINARY_NAME)-windows-x64_86/$(GENERIC_BINARY_NAME).exe
Downloads/$(GENERIC_BINARY_NAME)-macos-x64_86/$(GENERIC_BINARY_NAME)