Skip to content
This repository was archived by the owner on Dec 2, 2024. It is now read-only.

Commit

Permalink
Add basic CI
Browse files Browse the repository at this point in the history
  • Loading branch information
tdakhran committed Jun 9, 2024
1 parent 69817b1 commit e3e1c1d
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: razer-ctl-ci

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

env:
CARGO_TERM_COLOR: always
SCCACHE_GHA_ENABLED: "true"
RUSTC_WRAPPER: "sccache"

jobs:
build:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
- name: Run sccache-cache
uses: mozilla-actions/sccache-action@v0.0.3
- name: Build Windows
run: cargo build --verbose --release --target x86_64-pc-windows-gnu
- name: Build Linux
run: cargo build --verbose --release
- name: Run sccache stat for check
shell: bash
run: ${SCCACHE_PATH} --show-stats

0 comments on commit e3e1c1d

Please sign in to comment.