2023-05-16 15:45:11 -05:00
|
|
|
name: Build
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches: [ "master" ]
|
|
|
|
pull_request:
|
|
|
|
branches: [ "master" ]
|
|
|
|
|
|
|
|
env:
|
|
|
|
CARGO_TERM_COLOR: always
|
2023-05-16 16:42:05 -05:00
|
|
|
CARGO_TERM_PROGRESS_WHEN: never
|
2023-05-16 15:45:11 -05:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
build:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v3
|
2023-05-16 16:50:53 -05:00
|
|
|
- uses: awalsh128/cache-apt-pkgs-action@v1.3.0
|
|
|
|
with:
|
|
|
|
packages: libudev-dev
|
|
|
|
version: 1.0
|
|
|
|
- uses: Swatinem/rust-cache@v2.3.0
|
2023-05-16 15:45:11 -05:00
|
|
|
- name: Build
|
2023-05-16 16:33:17 -05:00
|
|
|
run: cargo build
|
|
|
|
--release
|
|
|
|
--bin kubi
|
|
|
|
--bin kubi-server
|
2023-05-16 17:16:49 -05:00
|
|
|
- name: Create artifact
|
2023-05-16 17:17:39 -05:00
|
|
|
run: |
|
|
|
|
mkdir artifact;
|
|
|
|
cp ./target/release/kubi ./artifact;
|
|
|
|
cp ./target/release/kubi-server ./artifact;
|
|
|
|
cp -r ./assets ./artifact;
|
2023-05-16 17:28:55 -05:00
|
|
|
cp ./Server.toml ./artifact;
|
2023-05-16 15:45:11 -05:00
|
|
|
- uses: actions/upload-artifact@v3
|
|
|
|
with:
|
2023-05-16 16:33:17 -05:00
|
|
|
name: linux-x64-release
|
2023-05-16 17:21:35 -05:00
|
|
|
path: ./artifact/*
|
2023-05-16 17:16:49 -05:00
|
|
|
if-no-files-found: error
|