Skip to content

packaging

packaging #4

Workflow file for this run

name: packaging
on:
workflow_dispatch:
jobs:
build:
strategy:
fail-fast: false
matrix:
os: [ ubuntu, macos, windows ]
build_type: [ Debug, Release ]
runs-on: ${{ matrix.os }}-latest
steps:
- uses: actions/checkout@v3
- if: matrix.os == 'ubuntu'
name: Install Dependencies
run: |
sudo apt-get update
sudo apt-get install -y xorg-dev libgl1-mesa-dev
- name: Configure CMake
run: cmake -B ${{ github.workspace }}/build -DCMAKE_BUILD_TYPE=${{ matrix.build_type }} -DPICROSS_BUILD_CLI=ON -DPICROSS_BUILD_APP=ON
- name: Build
working-directory: ${{ github.workspace }}/build
run: cmake --build . --config ${{ matrix.build_type }}
- name: Version
working-directory: ${{ github.workspace }}/build
run: cmake --build . --target picross_cli_version --config ${{ matrix.build_type }}
- name: Install
working-directory: ${{ github.workspace }}/build
run: cmake --install . --config ${{ matrix.build_type }} --prefix install
- name: Upload
uses: actions/upload-artifact@v3
with:
name: package-${{ matrix.os }}-${{ matrix.build_type }}
path: ${{ github.workspace }}/build/install
retention-days: 6