wip5 #146
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: [push, pull_request] | |
jobs: | |
build: | |
strategy: | |
matrix: | |
os: | |
- ubuntu-latest | |
- macos-latest | |
- windows-latest | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
submodules: 'true' | |
- name: Install Ubuntu Build Dependencies | |
if: ${{ matrix.os == 'ubuntu-latest' }} | |
run: | | |
sudo apt update | |
sudo apt install gettext libwxgtk3.0-gtk3-dev libgtk-3-dev libgcrypt20-dev liblzo2-dev | |
- name: Install MacOS Build Dependencies | |
if: ${{ matrix.os == 'macos-latest' }} | |
run: | | |
brew update | |
brew uninstall -f gmp | |
brew install wxwidgets | |
- name: Install Windows Build Dependencies | |
if: ${{ matrix.os == 'windows-latest' }} | |
uses: johnwason/vcpkg-action@v4 | |
id: vcpkg | |
with: | |
pkgs: wxwidgets | |
triplet: x64-windows | |
token: ${{ github.token }} | |
- name: Build | |
run: | | |
mkdir build | |
cd build | |
cmake ${{ steps.vcpkg.outputs.vcpkg-cmake-config }} .. | |
cmake --build . | |
cpack -V -C Debug | |
- name: Archive Ubuntu Build Artifacts | |
if: ${{ matrix.os == 'ubuntu-latest' }} | |
uses: actions/upload-artifact@v3 | |
with: | |
name: MultiVNC Debian Package | |
path: build/*.deb | |
- name: Archive MacOS Build Artifacts | |
if: ${{ matrix.os == 'macos-latest' }} | |
uses: actions/upload-artifact@v3 | |
with: | |
name: MultiVNC MacOS Package | |
path: build/*.dmg | |
- name: Archive Windows Build Artifacts | |
if: ${{ matrix.os == 'windows-latest' }} | |
uses: actions/upload-artifact@v3 | |
with: | |
name: MultiVNC Windows Package | |
path: build/*.exe |