From bc1f601d4ceed7e4ba111e4d580fc2278705d8d9 Mon Sep 17 00:00:00 2001 From: wipedlifepotato <60944239+wipedlifepotato@users.noreply.github.com> Date: Thu, 16 Oct 2025 02:54:03 +0300 Subject: [PATCH 1/2] worfklows: comment windows --- .github/workflows/build.yml | 30 +++++++++++++++--------------- 1 file changed, 15 insertions(+), 15 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 30b4fae..e0e6e07 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -12,7 +12,7 @@ jobs: build: strategy: matrix: - os: [ubuntu-latest, windows-latest] + os: [ubuntu-latest] #, windows-latest] compiler: [clang] runs-on: ${{ matrix.os }} @@ -39,14 +39,14 @@ jobs: obj libi2pd.a key: ubuntu-build-${{ runner.os }}-${{ hashFiles('**/*.cpp', '**/*.h') }} - - - name: Install MSYS2 (Windows) - if: matrix.os == 'windows-latest' - run: | - Invoke-WebRequest -Uri "https://github.com/msys2/msys2-installer/releases/download/2025-08-30/msys2-x86_64-20250830.exe" -OutFile "msys2-installer.exe" - Start-Process -Wait -FilePath "msys2-installer.exe" -ArgumentList "/S" - C:\msys64\usr\bin\bash.exe -lc "pacman -Syu --noconfirm" - C:\msys64\usr\bin\bash.exe -lc "export ARCH=x86_64; export MINGW=mingw64; pacman -S --noconfirm mingw-w64-$ARCH-gcc mingw-w64-$ARCH-boost mingw-w64-$ARCH-openssl git make" +# +# - name: Install MSYS2 (Windows) +# if: matrix.os == 'windows-latest' +# run: | +# Invoke-WebRequest -Uri "https://github.com/msys2/msys2-installer/releases/download/2025-08-30/msys2-x86_64-20250830.exe" -OutFile "msys2-installer.exe" +# Start-Process -Wait -FilePath "msys2-installer.exe" -ArgumentList "/S" +# C:\msys64\usr\bin\bash.exe -lc "pacman -Syu --noconfirm" +# C:\msys64\usr\bin\bash.exe -lc "export ARCH=x86_64; export MINGW=mingw64; pacman -S --noconfirm mingw-w64-$ARCH-gcc mingw-w64-$ARCH-boost mingw-w64-$ARCH-openssl git make" - name: Initialize Git Submodules run: git submodule update --init --recursive @@ -57,12 +57,12 @@ jobs: make -j8 make stripall make builddir - - - name: Build Project (Windows) - if: matrix.os == 'windows-latest' - run: | - C:\msys64\usr\bin\bash.exe -lc "cd /c/runner/work/i2pd-tools/i2pd-tools && make && make stripall && make builddir" - +# +# - name: Build Project (Windows) +# if: matrix.os == 'windows-latest' +# run: | +# C:\msys64\usr\bin\bash.exe -lc "cd /c/runner/work/i2pd-tools/i2pd-tools && make && make stripall && make builddir" +# - name: Upload binaries uses: actions/upload-artifact@v4 with: From 92a60ebef11904e5159058ad08232a76b2bc5046 Mon Sep 17 00:00:00 2001 From: Luminok <60944239+wipedlifepotato@users.noreply.github.com> Date: Thu, 16 Oct 2025 02:57:30 +0300 Subject: [PATCH 2/2] Update README.md --- README.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/README.md b/README.md index 038b35e..183d85a 100755 --- a/README.md +++ b/README.md @@ -31,6 +31,9 @@ git submodule init && git submodule update git submodule update --init git pull --recurse-submodules make +# optional, for small output +# make stripall +# make builddir ``` ## Tools included