Skip to content

Merge pull request #149 from haimgel/feature/ci-improvements #216

Merge pull request #149 from haimgel/feature/ci-improvements

Merge pull request #149 from haimgel/feature/ci-improvements #216

Workflow file for this run

name: build
on:
push:
branches:
- main
tags:
- '**'
pull_request:
types: [opened, synchronize, reopened]
env:
CARGO_TERM_COLOR: always
RUST_BACKTRACE: full
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
jobs:
crate_metadata:
name: Extract crate metadata
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Extract crate information
id: crate_metadata
run: |
cargo metadata --no-deps --format-version 1 | jq -r '"name=" + .packages[0].name' | tee -a $GITHUB_OUTPUT
cargo metadata --no-deps --format-version 1 | jq -r '"version=" + .packages[0].version' | tee -a $GITHUB_OUTPUT
outputs:
name: ${{ steps.crate_metadata.outputs.name }}
version: ${{ steps.crate_metadata.outputs.version }}
build:
name: Build (${{ matrix.job.short_target }})
needs: [crate_metadata]
strategy:
fail-fast: false
max-parallel: 3
matrix:
job:
- { os: ubuntu-latest, target: x86_64-unknown-linux-gnu, short_target: linux-amd64 }
- { os: macos-latest, target: universal2-apple-darwin, short_target: macos-universal }
- { os: windows-latest, target: x86_64-pc-windows-msvc, short_target: windows-amd64 }
runs-on: ${{ matrix.job.os }}
steps:
- name: Install build dependencies (Linux)
if: matrix.job.os == 'ubuntu-latest'
run: |
sudo apt-get update
sudo apt-get install libudev-dev
- name: Install build dependencies (Windows)
if: matrix.job.os == 'windows-latest'
run: |
choco install zip -y
- uses: actions/checkout@v4
- uses: Swatinem/rust-cache@v2
- name: Build
run: make build-release
- name: Run tests
run: make test
- name: Run executable
run: ./target/release/display_switch --version
- name: Package
id: package
shell: bash
run: |
PACKAGE_DIR="target/package"
mkdir -p "$PACKAGE_DIR"
PACKAGE_NAME="display_switch-v${{ needs.crate_metadata.outputs.version }}-${{ matrix.job.short_target }}.zip"
PACKAGE_FILE="$PACKAGE_DIR/$PACKAGE_NAME"
shopt -s extglob # To match the filename below (without any debug symbols)
zip -j $PACKAGE_FILE target/release/display_switch?(.exe) README.md LICENSE
echo "PACKAGE_NAME=$PACKAGE_NAME" >> $GITHUB_OUTPUT
echo "PACKAGE_FILE=$PACKAGE_FILE" >> $GITHUB_OUTPUT
- uses: actions/upload-artifact@v4
with:
if-no-files-found: error
name: ${{ steps.package.outputs.PACKAGE_NAME }}
path: ${{ steps.package.outputs.PACKAGE_FILE }}
- name: Release
uses: softprops/action-gh-release@v2
if: startsWith(github.ref, 'refs/tags/')
with:
draft: true # temporary, for testing
generate_release_notes: true
files: ${{ steps.package.outputs.PACKAGE_FILE }}