1212 build :
1313 strategy :
1414 matrix :
15- os : [ubuntu-latest, windows-latest]
15+ os : [ubuntu-latest] # , windows-latest]
1616 compiler : [clang]
1717
1818 runs-on : ${{ matrix.os }}
@@ -39,14 +39,14 @@ jobs:
3939 obj
4040 libi2pd.a
4141 key : ubuntu-build-${{ runner.os }}-${{ hashFiles('**/*.cpp', '**/*.h') }}
42-
43- - name : Install MSYS2 (Windows)
44- if : matrix.os == 'windows-latest'
45- run : |
46- Invoke-WebRequest -Uri "https://github.com/msys2/msys2-installer/releases/download/2025-08-30/msys2-x86_64-20250830.exe" -OutFile "msys2-installer.exe"
47- Start-Process -Wait -FilePath "msys2-installer.exe" -ArgumentList "/S"
48- C:\msys64\usr\bin\bash.exe -lc "pacman -Syu --noconfirm"
49- 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"
42+ #
43+ # - name: Install MSYS2 (Windows)
44+ # if: matrix.os == 'windows-latest'
45+ # run: |
46+ # Invoke-WebRequest -Uri "https://github.com/msys2/msys2-installer/releases/download/2025-08-30/msys2-x86_64-20250830.exe" -OutFile "msys2-installer.exe"
47+ # Start-Process -Wait -FilePath "msys2-installer.exe" -ArgumentList "/S"
48+ # C:\msys64\usr\bin\bash.exe -lc "pacman -Syu --noconfirm"
49+ # 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"
5050
5151 - name : Initialize Git Submodules
5252 run : git submodule update --init --recursive
@@ -57,12 +57,12 @@ jobs:
5757 make -j8
5858 make stripall
5959 make builddir
60-
61- - name : Build Project (Windows)
62- if : matrix.os == 'windows-latest'
63- run : |
64- C:\msys64\usr\bin\bash.exe -lc "cd /c/runner/work/i2pd-tools/i2pd-tools && make && make stripall && make builddir"
65-
60+ #
61+ # - name: Build Project (Windows)
62+ # if: matrix.os == 'windows-latest'
63+ # run: |
64+ # C:\msys64\usr\bin\bash.exe -lc "cd /c/runner/work/i2pd-tools/i2pd-tools && make && make stripall && make builddir"
65+ #
6666 - name : Upload binaries
6767 uses : actions/upload-artifact@v4
6868 with :
0 commit comments