-
-
Notifications
You must be signed in to change notification settings - Fork 285
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'AdnanHodzic:master' into master
- Loading branch information
Showing
6 changed files
with
126 additions
and
54 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,28 @@ | ||
name: Linux Build | ||
|
||
on: | ||
push: | ||
paths-ignore: | ||
- "README.md" | ||
- ".gitignore" | ||
- "LICENSE" | ||
pull_request: | ||
|
||
jobs: | ||
build_linux: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/[email protected] | ||
|
||
- name: Install poetry | ||
run: pipx install poetry | ||
|
||
- name: "Setup Python" | ||
uses: actions/[email protected] | ||
with: | ||
python-version: 3.12 | ||
cache: "poetry" | ||
|
||
- name: "Install auto-cpufreq" | ||
run: sudo ./auto-cpufreq-installer --install | ||
|
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,26 @@ | ||
name: Nix Flake | ||
|
||
on: | ||
push: | ||
paths-ignore: | ||
- "README.md" | ||
- ".gitignore" | ||
- "LICENSE" | ||
pull_request: | ||
|
||
jobs: | ||
build-nix: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
|
||
- name: "Install Nix ❄️" | ||
uses: cachix/install-nix-action@v25 | ||
|
||
- name: "Nix Cache" | ||
uses: DeterminateSystems/magic-nix-cache-action@v3 | ||
|
||
- name: "Build Nix Flake ❄️" | ||
run: nix build | ||
|
||
|
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
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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.