2024-08-12 07:11:32 +00:00
|
|
|
name: builder
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- "master"
|
|
|
|
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
build:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
2025-01-14 11:31:13 +00:00
|
|
|
- run: apt update && apt install cmake xorg-dev libglu1-mesa-dev clang -y
|
|
|
|
- uses: actions/checkout@v4
|
|
|
|
- uses: actions-rust-lang/setup-rust-toolchain@v1
|
2025-01-14 11:35:21 +00:00
|
|
|
- run: cargo build --release
|
2024-08-12 07:11:32 +00:00
|
|
|
- name: Upload artifacts
|
2025-01-13 11:40:31 +00:00
|
|
|
uses: https://git.kjan.de/actions/upload-artifact@v4
|
2024-08-12 07:11:32 +00:00
|
|
|
with:
|
|
|
|
name: build
|
|
|
|
path: target/release/passwd-cooker
|
|
|
|
|