-
-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
118 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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 }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters