Skip to content

Commit 9f28d84

Browse files
authored
Merge pull request #111 from wipedlifepotato/master
Comment workflow for windows, because its stucks
2 parents 8784f77 + 92a60eb commit 9f28d84

File tree

2 files changed

+18
-15
lines changed

2 files changed

+18
-15
lines changed

.github/workflows/build.yml

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
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:

README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,9 @@ git submodule init && git submodule update
3131
git submodule update --init
3232
git pull --recurse-submodules
3333
make
34+
# optional, for small output
35+
# make stripall
36+
# make builddir
3437
```
3538

3639
## Tools included

0 commit comments

Comments
 (0)