kubi/.github/workflows/build.yml

87 lines
2.1 KiB
YAML
Raw Normal View History

2023-05-16 20:45:11 +00:00
name: Build
on:
push:
branches: [ "master" ]
2023-05-17 10:30:14 +00:00
tags:
- 'v*'
2023-05-16 20:45:11 +00:00
pull_request:
branches: [ "master" ]
env:
CARGO_TERM_COLOR: always
2023-05-16 21:42:05 +00:00
CARGO_TERM_PROGRESS_WHEN: never
2023-05-16 20:45:11 +00:00
jobs:
build:
2023-05-17 10:30:14 +00:00
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, windows-latest]
runs-on: ${{ matrix.os }}
2023-05-16 20:45:11 +00:00
steps:
- uses: actions/checkout@v3
2023-05-16 21:50:53 +00:00
- uses: awalsh128/cache-apt-pkgs-action@v1.3.0
2023-05-17 10:30:14 +00:00
if: runner.os == 'Linux'
2023-05-16 21:50:53 +00:00
with:
packages: libudev-dev
version: 1.0
- uses: Swatinem/rust-cache@v2.3.0
2023-05-16 20:45:11 +00:00
- name: Build
2023-05-16 21:33:17 +00:00
run: cargo build
--release
--bin kubi
--bin kubi-server
2023-05-16 22:16:49 +00:00
- name: Create artifact
2023-05-17 10:30:14 +00:00
shell: bash
2023-05-16 22:17:39 +00:00
run: |
mkdir artifact;
cp ./target/release/kubi ./artifact;
cp ./target/release/kubi-server ./artifact;
cp -r ./assets ./artifact;
2023-05-16 22:28:55 +00:00
cp ./Server.toml ./artifact;
2023-05-16 20:45:11 +00:00
- uses: actions/upload-artifact@v3
with:
2023-05-17 10:32:55 +00:00
name: ${{ runner.os }}_${{ runner.arch }}
2023-05-16 22:21:35 +00:00
path: ./artifact/*
2023-05-16 22:16:49 +00:00
if-no-files-found: error
2023-05-17 10:30:14 +00:00
2023-05-18 02:42:52 +00:00
publish-nightly:
needs: build
2023-05-18 02:48:02 +00:00
permissions: write-all
2023-05-18 02:42:52 +00:00
if: (github.ref == 'refs/heads/master') && (!startsWith(github.ref, 'refs/tags/v'))
runs-on: ubuntu-latest
steps:
- uses: actions/download-artifact@v2
with:
path: ./artifacts
- uses: ncipollo/release-action@v1
with:
name: nightly
tag: nightly
allowUpdates: true
removeArtifacts: true
replacesArtifacts: true
prerelease: true
generateReleaseNotes: true
updateOnlyUnreleased: true
artifacts: ./artifacts/*
2023-05-17 10:30:14 +00:00
publish-release:
needs: build
2023-05-18 02:48:02 +00:00
permissions: write-all
2023-05-17 10:30:14 +00:00
if: startsWith(github.ref, 'refs/tags/v')
runs-on: ubuntu-latest
steps:
- uses: actions/download-artifact@v2
with:
path: ./artifacts
2023-05-17 10:53:00 +00:00
- uses: rlespinasse/github-slug-action@v4.4.1
2023-05-17 10:30:14 +00:00
- uses: ncipollo/release-action@v1
with:
tag: ${{ env.GITHUB_REF_SLUG_URL }}
2023-05-18 02:42:52 +00:00
generateReleaseNotes: true
2023-05-17 10:30:14 +00:00
makeLatest: true
artifacts: ./artifacts/*