ci: add release & actions

This commit is contained in:
Jozef Steinhübl 2024-07-19 16:26:21 +02:00
parent b3825e78c7
commit 3059d9d2d1
No known key found for this signature in database
GPG key ID: E6BC90C91973B08F
5 changed files with 118 additions and 14 deletions

17
.github/actions/check/action.yml vendored Normal file
View file

@ -0,0 +1,17 @@
name: Check
description: Lints & formats
runs:
using: composite
steps:
- name: check
shell: bash
run: cargo check --all
- name: fmt
shell: bash
run: cargo fmt --all -- --check
- name: clippy
shell: bash
run: cargo clippy --all -- -D warnings

13
.github/actions/install-rust/action.yml vendored Normal file
View file

@ -0,0 +1,13 @@
name: Install rust
description: Installs the latest version of rust, rustfmt & clippy
runs:
using: composite
steps:
- name: install rust
uses: dtolnay/rust-toolchain@stable
with:
components: rustfmt, clippy
- name: cache dependencies
uses: Swatinem/rust-cache@v2

View file

@ -5,24 +5,14 @@ on:
jobs:
check:
name: check
runs-on: ubuntu-latest
steps:
- name: checkout
uses: actions/checkout@v4
- name: install rust
uses: dtolnay/rust-toolchain@stable
with:
components: rustfmt, clippy
- name: cache dependencies
uses: Swatinem/rust-cache@v2
uses: ./github/actions/install-rust
- name: check
run: cargo check --all
- name: fmt
run: cargo fmt --all -- --check
- name: clippy
run: cargo clippy --all -- -D warnings
uses: ./github/actions/check

85
.github/workflows/release.yml vendored Normal file
View file

@ -0,0 +1,85 @@
name: Release
on:
workflow_dispatch:
jobs:
check:
name: check
runs-on: ubuntu-latest
steps:
- name: checkout
uses: actions/checkout@v4
- name: install rust
uses: ./github/actions/install-rust
- name: check
uses: ./github/actions/check
compile:
name: compile ${{ matrix.target }}
runs-on: ${{ matrix.runs-on && matrix.runs-on || 'ubuntu-latest' }}
needs: check
strategy:
matrix:
include:
- target: x86_64-unknown-linux-gnu
runner: ubuntu-latest
archive: tar.gz
- target: aarch64-unknown-linux-gnu
runner: ubuntu-latest
archive: tar.gz
- target: x86_64-apple-darwin
runner: macos-latest
archive: tar.gz
- target: aarch64-apple-darwin
runner: macos-latest
archive: tar.gz
- target: x86_64-pc-windows-msvc
runner: windows-latest
archive: zip
steps:
- name: checkout
uses: actions/checkout@v4
- name: build binary
run: cargo build -p discord-presence-lsp --verbose --locked --release --target ${{ matrix.target }}
- name: prepare for upload
id: vars
run: |
BIN_SUFFIX=""
if [[ "${{ matrix.runner }}" == "windows-latest" ]]; then
BIN_SUFFIX=".exe"
fi
BIN_OUTPUT="target/${{ matrix.target }}/release/discord-presence-lsp${BIN_SUFFIX}"
ARCHIVE_NAME="discord-presence-lsp-${{ matrix.target }}"
mkdir tmp/
mkdir "tmp/${ARCHIVE_NAME}"
mv "${BIN_OUTPUT}" "tmp/${ARCHIVE_NAME}"
cp LICENSE "tmp/${ARCHIVE_NAME}"
cp lsp/README.md "tmp/${ARCHIVE_NAME}"
if [[ "${{ matrix.archive }}" == "tar.gz" ]]; then
ARCHIVE_PATH="tmp/${ARCHIVE_NAME}.tar.gz"
tar -czvf "${ARCHIVE_PATH}" -C "tmp/${ARCHIVE_NAME}"
else
ARCHIVE_PATH="tmp/${ARCHIVE_NAME}.zip"
zip -r "${ARCHIVE_PATH}" -C "tmp/${ARCHIVE_NAME}"
fi
echo "archive_name=${ARCHIVE_NAME}"
echo "archive_path=${ARCHIVE_PATH}" >> $GITHUB_OUTPUT
- name: upload artifact
uses: actions/upload-artifact@v3
with:
name: ${{ steps.vars.outputs.archive_name }}
path: |
${{ steps.vars.outputs.archive_path }}

View file

@ -2,7 +2,6 @@
name = "zed-discord-presence"
version = "0.1.0"
edition = "2021"
license = "GNU General Public License v3.0"
license-file = "LICENSE"
repository = "https://git.sr.ht/~hyro/zed-discord-presence"