Skip to content

Commit

Permalink
CI/CD, Sparkle, macos pkging prototype
Browse files Browse the repository at this point in the history
  • Loading branch information
ManuelSchneid3r committed Sep 22, 2023
1 parent 350774f commit a22b187
Show file tree
Hide file tree
Showing 10 changed files with 505 additions and 195 deletions.
104 changes: 78 additions & 26 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,21 +2,40 @@ name: CI

on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
branches: [ "master", "dev" ]

concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true

jobs:

macos:
# Release:
# if: startsWith(github.ref, 'refs/tags/')
# runs-on: ubuntu-latest
# steps:
# - name: Checkout recursive
# uses: actions/checkout@v3
# with:
# submodules: 'recursive'
# path: albert
# - name: Create archives
# run: |
# tar --exclude=".*" -czvf ${{ github.ref_name }}.tar.gz albert
# zip -r ${{ github.ref_name }}.zip albert -x "*/.*"
# - name: Release
# uses: softprops/action-gh-release@v1
# with:
# generate_release_notes: true
# files: |
# ${{ github.ref_name }}.tar.gz
# ${{ github.ref_name }}.zip

MacOS:
strategy:
fail-fast: false
matrix:
os: [macos-11, macos-12, macos-13]
os: [macos-12]
build_type: [Release]
qt_version: [6.5.2] # 6.2.4

Expand All @@ -27,32 +46,65 @@ jobs:
uses: actions/checkout@v3
with:
submodules: recursive
- name: Get latest CMake and ninja
uses: lukka/get-cmake@latest
- name: Install Qt dependencies
uses: jurplel/install-qt-action@v3
with:
version: ${{ matrix.qt_version }}
#cache: true
modules: 'qtscxml'
- name: Install dependencies using HomeBrew
run : brew install pybind11 libqalculate muparser libarchive
- name: Get latest CMake and ninja
uses: lukka/get-cmake@latest
- name: Run CMake
run: cmake -S . -B build
modules: 'qtscxml qt5compat qtshadertools'
# - name: Install macports (universal libraries)
# run: |
# case ${{ matrix.os }} in
# macos-11)
# wget "https://github.com/macports/macports-base/releases/download/v2.8.1/MacPorts-2.8.1-11-BigSur.pkg"
# sudo installer -pkg ./MacPorts-2.8.1-11-BigSur.pkg -target /
# ;;
# macos-12)
# wget "https://github.com/macports/macports-base/releases/download/v2.8.1/MacPorts-2.8.1-12-Monterey.pkg"
# sudo installer -pkg ./MacPorts-2.8.1-12-Monterey.pkg -target /
# ;;
# macos-13)
# wget "https://github.com/macports/macports-base/releases/download/v2.8.1/MacPorts-2.8.1-13-Ventura.pkg"
# sudo installer -pkg ./MacPorts-2.8.1-13-Ventura.pkg -target /
# ;;
# esac
# sudo sh -c 'echo "\n+universal" >> /opt/local/etc/macports/variants.conf'
# - name: Install dependencies using macports
# run : sudo /opt/local/bin/port install pybind11 libqalculate libarchive
- name: Build
run: cmake --build build
run: |
cmake -S . -B build \
-DCMAKE_OSX_ARCHITECTURES="arm64;x86_64" \
-DBUILD_CALCULATOR_QALCULATE=OFF \
-DBUILD_PYTHON=OFF
cmake --build build
- name: Package
run: cd build && cpack -V
- name: Upload
uses: softprops/action-gh-release@v1
with:
tag_name: v0.22.4
files: |
build/Albert-0.22.4-Darwin.dmg
build/Albert-0.22.4-Darwin.dmg.sha256
# Albert-{{ github.ref_name }}-Darwin.dmg
# Albert-{{ github.ref_name }}-Darwin.sha256
#if: startsWith(github.ref, 'refs/tags/')
linux-dockerized:
runs-on: ubuntu-latest
# Linux:
# runs-on: ubuntu-latest

steps:
- name: Checkout source code
uses: actions/checkout@v3
with:
submodules: recursive
- name: Build docker test image for ArchLinux
run: docker build . --file .docker/arch.Dockerfile
- name: Build docker test image for Fedora:latest
run: docker build . --file .docker/fedora.latest.Dockerfile
- name: Build docker test image for Ubuntu:22.04
run: docker build . --file .docker/ubuntu.2204.Dockerfile
# strategy:
# fail-fast: false
# matrix:
# dockerfile: [arch.Dockerfile, fedora.latest.Dockerfile, ubuntu.2204.Dockerfile]

# steps:
# - name: Checkout source code
# uses: actions/checkout@v3
# with:
# submodules: recursive
# - name: Build docker test image
# run: docker build . --file .docker/${{ matrix.dockerfile }}
Loading

0 comments on commit a22b187

Please sign in to comment.