mirror of
https://github.com/ValdikSS/GoodbyeDPI.git
synced 2024-11-29 05:30:18 +01:00
78 lines
2.7 KiB
YAML
78 lines
2.7 KiB
YAML
name: Build GoodbyeDPI
|
|
|
|
on:
|
|
push:
|
|
paths:
|
|
- 'src/**'
|
|
|
|
env:
|
|
WINDIVERT_URL: https://www.reqrypt.org/download/WinDivert-2.2.0-A.zip
|
|
WINDIVERT_NAME: WinDivert-2.2.0-A.zip
|
|
WINDIVERT_BASENAME: WinDivert-2.2.0-A
|
|
WINDIVERT_SHA256: 2a7630aac0914746fbc565ac862fa096e3e54233883ac52d17c83107496b7a7f
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
|
|
- name: Declare short commit variable
|
|
id: vars
|
|
run: |
|
|
echo "::set-output name=sha_short::$(git rev-parse --short HEAD)"
|
|
|
|
- name: Install MinGW-w64
|
|
run: >
|
|
sudo rm /var/lib/man-db/auto-update &&
|
|
sudo DEBIAN_FRONTEND=noninteractive XZ_DEFAULTS="-T0" XZ_OPT="-T0" eatmydata
|
|
apt install -y --no-install-recommends gcc-mingw-w64
|
|
|
|
- name: Download WinDivert from cache
|
|
id: windivert-cache
|
|
uses: actions/cache@v2
|
|
with:
|
|
path: ${{ env. WINDIVERT_NAME }}
|
|
key: ${{ env. WINDIVERT_SHA256 }}
|
|
|
|
- name: Download WinDivert from the website
|
|
if: steps.windivert-cache.outputs.cache-hit != 'true'
|
|
run: >
|
|
wget ${{ env. WINDIVERT_URL }} &&
|
|
(echo ${{ env. WINDIVERT_SHA256 }} ${{ env. WINDIVERT_NAME }} | sha256sum -c)
|
|
|
|
- name: Unpack WinDivert
|
|
run: unzip ${{ env. WINDIVERT_NAME }}
|
|
|
|
- name: Compile x86_64
|
|
run: >
|
|
cd src && make clean &&
|
|
make CPREFIX=x86_64-w64-mingw32- BIT64=1 WINDIVERTHEADERS=../${{ env.WINDIVERT_BASENAME }}/include WINDIVERTLIBS=../${{ env.WINDIVERT_BASENAME }}/x64 -j4
|
|
|
|
- name: Prepare x86_64 directory
|
|
run: |
|
|
mkdir goodbyedpi_x86_64_${{ steps.vars.outputs.sha_short }}
|
|
cp src/goodbyedpi.exe ${{ env.WINDIVERT_BASENAME }}/x64/*.{dll,sys} goodbyedpi_x86_64_${{ steps.vars.outputs.sha_short }}
|
|
|
|
- name: Upload output file x86_64
|
|
uses: actions/upload-artifact@v2
|
|
with:
|
|
name: goodbyedpi_x86_64_${{ steps.vars.outputs.sha_short }}
|
|
path: goodbyedpi_x86_64_${{ steps.vars.outputs.sha_short }}
|
|
|
|
- name: Compile i686
|
|
run: >
|
|
cd src && make clean &&
|
|
make CPREFIX=i686-w64-mingw32- WINDIVERTHEADERS=../${{ env.WINDIVERT_BASENAME }}/include WINDIVERTLIBS=../${{ env.WINDIVERT_BASENAME }}/x86 -j4
|
|
|
|
- name: Prepare x86 directory
|
|
run: |
|
|
mkdir goodbyedpi_x86_${{ steps.vars.outputs.sha_short }}
|
|
cp src/goodbyedpi.exe ${{ env.WINDIVERT_BASENAME }}/x86/*.{dll,sys} goodbyedpi_x86_${{ steps.vars.outputs.sha_short }}
|
|
|
|
- name: Upload output file x86
|
|
uses: actions/upload-artifact@v2
|
|
with:
|
|
name: goodbyedpi_x86_${{ steps.vars.outputs.sha_short }}
|
|
path: goodbyedpi_x86_${{ steps.vars.outputs.sha_short }}
|