Skip to content

Commit

Permalink
CI: Packaging github action
Browse files Browse the repository at this point in the history
On MacOS, we package for archs x86_64 and arm64
  • Loading branch information
pierre-dejoue committed Aug 14, 2023
1 parent d126e4a commit 285f0f6
Show file tree
Hide file tree
Showing 2 changed files with 56 additions and 34 deletions.
34 changes: 0 additions & 34 deletions .github/workflows/gui.yml

This file was deleted.

56 changes: 56 additions & 0 deletions .github/workflows/packaging.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,56 @@
name: packaging

on:
# This workflow is manually triggered
workflow_dispatch:

jobs:
build:
strategy:
fail-fast: false
matrix:
os: [ ubuntu, macos, windows ]
build_type: [ Debug, Release ]
arch: [ x86_64, arm64 ]
exclude:
- os: ubuntu
arch: arm64
- os: windows
arch: arm64

runs-on: ${{ matrix.os }}-latest

env:
CMAKE_CONFIG_EXTRA: ${{ matrix.os == 'macos' && format('-DCMAKE_OSX_ARCHITECTURES={0}', matrix.arch) || '' }}

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 ${{ env.CMAKE_CONFIG_EXTRA }}

- name: Build
working-directory: ${{ github.workspace }}/build
run: cmake --build . --config ${{ matrix.build_type }}

- if: matrix.arch == 'x86_64'
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.arch }}-${{ matrix.build_type }}
path: ${{ github.workspace }}/build/install
retention-days: 6

0 comments on commit 285f0f6

Please sign in to comment.