kubi/.github/workflows/build.yml

116 lines
2.9 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-28 21:46:14 +00:00
- uses: rui314/setup-mold@v1
if: runner.os == 'Linux'
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
2023-11-25 15:22:44 +00:00
--package kubi
2023-05-16 21:33:17 +00:00
--bin kubi
2023-11-25 15:22:44 +00:00
--package kubi-server
2023-05-16 21:33:17 +00:00
--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
if: (github.event_name == 'push') && (github.ref == 'refs/heads/master')
2023-05-18 02:42:52 +00:00
runs-on: ubuntu-latest
steps:
2023-05-19 01:16:56 +00:00
- uses: actions/checkout@v3
- uses: actions/download-artifact@v3
2023-05-18 02:42:52 +00:00
with:
path: ./artifacts
- name: Delete existing tag
continue-on-error: true
run: |
git push --delete origin refs/tags/nightly;
- name: Create nightly tag
continue-on-error: true
run: |
git tag nightly;
git push origin nightly;
2023-05-18 03:00:05 +00:00
- name: Create zip files
run: |
2023-05-19 01:16:56 +00:00
cd ./artifacts;
for folder in */; do
zip -r "${folder%/}.zip" "$folder"*;
rm -rf "$folder";
2023-05-18 03:00:05 +00:00
done;
cd ..;
2023-05-18 02:42:52 +00:00
- uses: ncipollo/release-action@v1
with:
name: nightly
tag: nightly
allowUpdates: true
removeArtifacts: true
replacesArtifacts: true
prerelease: true
generateReleaseNotes: true
updateOnlyUnreleased: true
2023-05-18 03:00:05 +00:00
artifacts: ./artifacts/*
2023-05-18 02:42:52 +00:00
2023-05-17 10:30:14 +00:00
publish-release:
needs: build
2023-05-18 02:48:02 +00:00
permissions: write-all
if: (github.event_name == 'push') && startsWith(github.ref, 'refs/tags/v')
2023-05-17 10:30:14 +00:00
runs-on: ubuntu-latest
steps:
2023-05-19 01:16:56 +00:00
- uses: actions/download-artifact@v3
2023-05-17 10:30:14 +00:00
with:
path: ./artifacts
2023-05-18 03:00:05 +00:00
- name: Create zip files
run: |
cd ./artifacts;
for folder in */; do
zip -r "${folder%/}.zip" "$folder"*;
rm -rf "$folder";
2023-05-18 03:00:05 +00:00
done;
cd ..;
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/*