Skip to content

Updated README, bumping version to 2.4.6 #37

Updated README, bumping version to 2.4.6

Updated README, bumping version to 2.4.6 #37

Workflow file for this run

name: C/C++ CI
on: [push, pull_request]
jobs:
Linux:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
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@v3
with:
name: webmapper-ubuntu-standalone
path: dist/webmapper
MacOS-Latest:
runs-on: macOS-latest
env:
CC: clang
CXX: clang++
steps:
- uses: actions/checkout@v3
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@v3
with:
name: webmapper-macosx-standalone
path: dist/webmapper
Windows-Latest:
runs-on: windows-latest
steps:
- uses: actions/checkout@v3
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@v3
with:
name: webmapper-win64-standalone
path: dist/webmapper