2020-10-14 08:06:22 +03:00
|
|
|
name: Build on Windows
|
|
|
|
|
|
|
|
on: [push, pull_request]
|
|
|
|
|
|
|
|
defaults:
|
|
|
|
run:
|
|
|
|
shell: msys2 {0}
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
build:
|
2021-11-18 16:17:28 +03:00
|
|
|
name: Building using ${{ matrix.arch }} toolchain
|
2020-10-14 08:06:22 +03:00
|
|
|
runs-on: windows-latest
|
|
|
|
strategy:
|
|
|
|
fail-fast: true
|
|
|
|
matrix:
|
|
|
|
include: [
|
2021-11-18 16:17:28 +03:00
|
|
|
{ msystem: MINGW64, arch: x86_64, arch_short: x64 },
|
|
|
|
{ msystem: MINGW32, arch: i686, arch_short: x86 }
|
2020-10-14 08:06:22 +03:00
|
|
|
]
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
|
|
|
- name: Setup MSYS2
|
|
|
|
uses: msys2/setup-msys2@v2
|
|
|
|
with:
|
|
|
|
msystem: ${{ matrix.msystem }}
|
2020-10-14 08:14:33 +03:00
|
|
|
install: base-devel mingw-w64-${{ matrix.arch }}-gcc mingw-w64-${{ matrix.arch }}-boost mingw-w64-${{ matrix.arch }}-openssl mingw-w64-${{ matrix.arch }}-miniupnpc
|
2020-10-14 08:06:22 +03:00
|
|
|
update: true
|
2021-11-18 16:17:28 +03:00
|
|
|
- name: Build application
|
2020-11-17 21:39:46 +03:00
|
|
|
run: |
|
|
|
|
mkdir -p obj/Win32 obj/libi2pd obj/libi2pd_client obj/daemon
|
2021-11-18 16:17:28 +03:00
|
|
|
make USE_UPNP=yes DEBUG=no USE_GIT_VERSION=yes -j3
|
2021-02-27 00:09:01 +03:00
|
|
|
- name: Upload artifacts
|
|
|
|
uses: actions/upload-artifact@v2
|
|
|
|
with:
|
2021-11-18 16:17:28 +03:00
|
|
|
name: i2pd-${{ matrix.arch_short }}.exe
|
2021-02-27 00:09:01 +03:00
|
|
|
path: i2pd.exe
|