Skip to content

CI: temporarily downgrade macOS-latest to macOS-13. #41

CI: temporarily downgrade macOS-latest to macOS-13.

CI: temporarily downgrade macOS-latest to macOS-13. #41

Workflow file for this run

name: C/C++ CI
on: [push, pull_request]
jobs:
Linux:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: install dependencies
run:
pip3 install mappersession
&& pip3 install netifaces
&& pip3 install pyinstaller
- name: build standalone
run:
pyinstaller webmapper.spec
- uses: actions/upload-artifact@v4
with:
name: webmapper-ubuntu-standalone
path: dist/webmapper
MacOS:
runs-on: macOS-13
env:
CC: clang
CXX: clang++
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: install dependencies
run:
pip3 install mappersession
&& pip3 install netifaces
&& pip3 install pyinstaller
- name: build standalone
run:
pyinstaller webmapper.spec
- uses: actions/upload-artifact@v4
with:
name: webmapper-macosx-standalone
path: dist/webmapper
Windows-Latest:
runs-on: windows-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: install dependencies
run:
pip3 install mappersession
&& pip3 install netifaces
&& pip3 install pyinstaller
- name: build standalone
run:
pyinstaller webmapper.spec
- uses: actions/upload-artifact@v4
with:
name: webmapper-win64-standalone
path: dist/webmapper