Skip to content

Commit

Permalink
feat: ci & release workflow (#23)
Browse files Browse the repository at this point in the history
* feat: ci & release workflow

* update: compression step & fix clippy
  • Loading branch information
luckasRanarison authored Feb 5, 2024
1 parent 742ba12 commit 31facda
Show file tree
Hide file tree
Showing 2 changed files with 107 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: CI

on:
push:
branches: ["master"]
pull_request:
branches: ["master"]

env:
CARGO_TERM_COLOR: always

jobs:
build:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- name: Build
run: cargo build --verbose
- name: Test
run: cargo test --all-features --verbose
- name: Lint
run: cargo clippy -- -D warnings -A clippy::unnecessary_to_owned --verbose
84 changes: 84 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,84 @@
name: Release

on:
push:
tags:
- "v*"

env:
CARGO_INCREMENTAL: 0

jobs:
build:
name: Build
strategy:
fail-fast: false
matrix:
job:
- target: x86_64-unknown-linux-musl
exe: x86_64-linux
os: ubuntu-latest
- target: aarch64-unknown-linux-musl
exe: aarch64-linux
os: ubuntu-latest
- target: armv7-unknown-linux-musleabi
exe: armv7-linux
os: ubuntu-latest
- target: x86_64-apple-darwin
exe: x86-64-apple-darwin
os: macos-latest
- target: aarch64-apple-darwin
exe: arm64-apple-darwin
os: macos-latest
runs-on: ${{ matrix.job.os }}
steps:
- uses: actions/checkout@v3
- uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
override: true
target: ${{ matrix.job.target }}
components: rust-src
- uses: actions-rs/cargo@v1
with:
use-cross: true
args: --release --target=${{ matrix.job.target }} --locked
command: build
- name: Rename build
run: cp target/${{ matrix.job.target }}/release/cmd-wrapped cmd-wrapped-${{ matrix.job.exe }}
- name: Archive production artifacts
uses: actions/upload-artifact@v3
with:
name: build
path: cmd-wrapped-${{ matrix.job.exe }}

cargo-publish:
runs-on: ubuntu-20.04
needs: build
steps:
- uses: actions/checkout@v3
- name: Cargo publish
run: cargo publish --token ${{ secrets.CRATES_IO_TOKEN }}

release:
name: Tagged Release
runs-on: ubuntu-20.04
needs: build
steps:
- uses: actions/download-artifact@v3
- name: Compress files
run: |
for file in $(find ./build -type f); do
zip "${file}.zip" "${file}"
done
- uses: marvinpinto/action-automatic-releases@latest
with:
repo_token: ${{ secrets.GITHUB_TOKEN }}
prerelease: false
files: |
./build/cmd-wrapped-x86_64-apple-darwin.zip
./build/cmd-wrapped-arm64-apple-darwin.zip
./build/cmd-wrapped-x86_64-linux.zip
./build/cmd-wrapped-aarch64-linux.zip
./build/cmd-wrapped-armv7-linux.zip

0 comments on commit 31facda

Please sign in to comment.