mirror of
https://github.com/PurpleI2P/i2pd.git
synced 2025-08-27 02:30:33 +01:00
[gha] msvc build
Signed-off-by: R4SAS <r4sas@i2pmail.org>
This commit is contained in:
parent
0a8da6bc2f
commit
c6bf8bad58
2 changed files with 48 additions and 3 deletions
45
.github/workflows/build-windows-msvc.yml
vendored
Normal file
45
.github/workflows/build-windows-msvc.yml
vendored
Normal file
|
@ -0,0 +1,45 @@
|
||||||
|
name: Build on Windows
|
||||||
|
|
||||||
|
on: [push, pull_request]
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
build:
|
||||||
|
name: CMake MSVC
|
||||||
|
runs-on: windows-2019
|
||||||
|
|
||||||
|
strategy:
|
||||||
|
fail-fast: false
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- name: Checkout
|
||||||
|
uses: actions/checkout@v3
|
||||||
|
with:
|
||||||
|
fetch-depth: 0
|
||||||
|
|
||||||
|
- name: Build and install zlib
|
||||||
|
run: powershell -Command "(Invoke-WebRequest -Uri https://git.io/JnHTY -OutFile install_zlib.bat)"; ./install_zlib.bat; del install_zlib.bat
|
||||||
|
|
||||||
|
- name: Install boost
|
||||||
|
uses: MarkusJx/install-boost@v2.4.4
|
||||||
|
id: install-boost
|
||||||
|
with:
|
||||||
|
boost_version: 1.81.0
|
||||||
|
boost_install_dir: C:\boost
|
||||||
|
platform_version: 2019
|
||||||
|
toolset: msvc
|
||||||
|
link: static
|
||||||
|
|
||||||
|
- name: Build application
|
||||||
|
run: |
|
||||||
|
cd build
|
||||||
|
cmake -DWITH_STATIC=ON .
|
||||||
|
cmake --build . --config Debug -- -m
|
||||||
|
env:
|
||||||
|
BOOST_ROOT: ${{ steps.install-boost.outputs.BOOST_ROOT }}
|
||||||
|
|
||||||
|
- name: Upload artifacts
|
||||||
|
uses: actions/upload-artifact@v3
|
||||||
|
with:
|
||||||
|
name: i2pd-msvc.zip
|
||||||
|
path: build/Debug/i2pd.*
|
||||||
|
|
6
.github/workflows/build-windows.yml
vendored
6
.github/workflows/build-windows.yml
vendored
|
@ -8,7 +8,7 @@ defaults:
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
build:
|
build:
|
||||||
name: Building using ${{ matrix.arch }} toolchain
|
name: ${{ matrix.arch }}
|
||||||
runs-on: windows-latest
|
runs-on: windows-latest
|
||||||
|
|
||||||
strategy:
|
strategy:
|
||||||
|
@ -50,7 +50,7 @@ jobs:
|
||||||
path: i2pd.exe
|
path: i2pd.exe
|
||||||
|
|
||||||
build-cmake:
|
build-cmake:
|
||||||
name: Building using ${{ matrix.arch }} toolchain using CMake
|
name: CMake ${{ matrix.arch }}
|
||||||
runs-on: windows-latest
|
runs-on: windows-latest
|
||||||
|
|
||||||
strategy:
|
strategy:
|
||||||
|
@ -89,7 +89,7 @@ jobs:
|
||||||
path: build/i2pd.exe
|
path: build/i2pd.exe
|
||||||
|
|
||||||
build-xp:
|
build-xp:
|
||||||
name: Building for Windows XP
|
name: XP
|
||||||
runs-on: windows-latest
|
runs-on: windows-latest
|
||||||
|
|
||||||
strategy:
|
strategy:
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue