Skip to content

Commit

Permalink
Initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
timrogers committed Jan 14, 2024
0 parents commit b98b7a4
Show file tree
Hide file tree
Showing 10 changed files with 1,204 additions and 0 deletions.
1 change: 1 addition & 0 deletions .github/FUNDING.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
github: timrogers
10 changes: 10 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
version: 2
updates:
- package-ecosystem: "github-actions"
directory: "/"
schedule:
interval: "weekly"
- package-ecosystem: "cargo"
directory: "/"
schedule:
interval: "weekly"
71 changes: 71 additions & 0 deletions .github/workflows/build_and_release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,71 @@
name: Build, test and release

on: push

jobs:
build:
name: Build and test
strategy:
fail-fast: false
matrix:
job:
- { target: x86_64-unknown-linux-gnu, binary_name: linux-amd64, os: ubuntu-latest }
- { target: x86_64-apple-darwin, binary_name: darwin-amd64, os: macos-latest }
- { target: x86_64-pc-windows-msvc, binary_name: windows-amd64.exe, os: windows-latest }
runs-on: ${{ matrix.job.os }}
steps:
- uses: actions/checkout@v4
- name: Install libudev-dev
run: sudo apt-get update && sudo apt-get install libudev-dev
if: matrix.job.os == 'ubuntu-latest'
- name: Cache Rust dependencies
uses: actions/cache@v3.3.3
with:
path: target
key: ${{ runner.OS }}-build-${{ hashFiles('**/Cargo.lock') }}
restore-keys: |
${{ runner.OS }}-build-
- name: Install latest Rust nightly
uses: actions-rs/toolchain@v1
with:
profile: minimal
components: rustc, cargo
toolchain: nightly
override: true
target: ${{ matrix.job.target }}
- name: Run cargo build --release
uses: actions-rs/cargo@v1
with:
args: --release --target=${{ matrix.job.target }}
command: build
- name: Rename binary to use structured filename
run: |
rm target/${{ matrix.job.target }}/release/litra.d
cp target/${{ matrix.job.target }}/release/litra* litra_${{ github.ref_name }}_${{ matrix.job.binary_name }}
- name: Upload binary as artifact
uses: actions/upload-artifact@v4
with:
path: litra_${{ github.ref_name }}_${{ matrix.job.binary_name }}
name: litra_${{ github.ref_name }}_${{ matrix.job.binary_name }}
release:
name: Create release with binary assets
runs-on: ubuntu-latest
needs: build
if: startsWith(github.event.ref, 'refs/tags/v')
steps:
- uses: actions/download-artifact@v4
with:
name: litra_${{ github.ref_name }}_linux-amd64
- uses: actions/download-artifact@v4
with:
name: litra_${{ github.ref_name }}_darwin-amd64
- uses: actions/download-artifact@v4
with:
name: litra_${{ github.ref_name }}_windows-amd64.exe
- name: Create release
uses: softprops/action-gh-release@v1
with:
files: |
litra_${{ github.ref_name }}_windows-amd64.exe
litra_${{ github.ref_name }}_darwin-amd64
litra_${{ github.ref_name }}_linux-amd64
29 changes: 29 additions & 0 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: Lint

on: push

env:
CARGO_TERM_COLOR: always

jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install libudev-dev
run: sudo apt-get update && sudo apt-get install libudev-dev
- name: Install latest Rust nightly
uses: actions-rs/toolchain@v1
with:
toolchain: nightly
override: true
components: rustc, rustfmt
- name: Run cargo check
uses: actions-rs/cargo@v1
with:
command: check
- name: Run cargo fmt -- --check
uses: actions-rs/cargo@v1
with:
command: fmt
args: -- --check
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
/target
Loading

0 comments on commit b98b7a4

Please sign in to comment.