Skip to content

Commit

Permalink
rm libcdi dll
Browse files Browse the repository at this point in the history
  • Loading branch information
a1ive committed Jun 25, 2024
1 parent 2e046b3 commit f64e517
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 9 deletions.
17 changes: 8 additions & 9 deletions .github/workflows/msbuild.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,10 +29,6 @@ jobs:
# Add additional options to the MSBuild command line here (like platform or verbosity level).
# See https://docs.microsoft.com/visualstudio/msbuild/msbuild-command-line-reference
run: |
curl.exe -o pci.ids https://raw.githubusercontent.com/pciutils/pciids/master/pci.ids
curl.exe -o usb.ids http://www.linux-usb.org/usb.ids
curl.exe -o pnp.ids https://raw.githubusercontent.com/vcrhonek/hwdata/master/pnp.ids
Add-Content -Path "pnp.ids" -Value "# Version: $(Get-Date -Format 'yyyy.MM.dd')"
msbuild /m /p:Configuration=Release /p:platform=x64 ${{env.SOLUTION_FILE_PATH}}
msbuild /m /p:Configuration=Release /p:platform=x86 ${{env.SOLUTION_FILE_PATH}}
md nwinfo
Expand All @@ -42,19 +38,22 @@ jobs:
move Win32\Release\gnwinfo.exe nwinfo\gnwinfo_x86.exe
copy gnwinfo\gnwinfo.ini nwinfo\gnwinfo.ini
copy LICENSE nwinfo\LICENSE
copy pci.ids nwinfo\pci.ids
copy usb.ids nwinfo\usb.ids
copy pnp.ids nwinfo\pnp.ids
copy Win32\Release\ryzenadj.dll nwinfo\ryzenadj.dll
copy x64\Release\ryzenadjx64.dll nwinfo\ryzenadjx64.dll
copy libcdi\libcdi.Win32.dll nwinfo\libcdi.Win32.dll
copy libcdi\libcdi.x64.dll nwinfo\libcdi.x64.dll
copy libnw\jep106.ids nwinfo\jep106.ids
# copy winring0\WinRing0.sys nwinfo\WinRing0.sys
# copy winring0\WinRing0x64.sys nwinfo\WinRing0x64.sys
copy winring0\HwRwDrv.sys nwinfo\HwRwDrv.sys
copy winring0\HwRwDrvx64.sys nwinfo\HwRwDrvx64.sys
# copy winring0\HwRwDrvWin7x64.sys nwinfo\HwRwDrvWin7x64.sys
wget -o nwinfo\pci.ids https://raw.githubusercontent.com/pciutils/pciids/master/pci.ids
wget -o nwinfo\usb.ids http://www.linux-usb.org/usb.ids
wget -o nwinfo\pnp.ids https://raw.githubusercontent.com/vcrhonek/hwdata/master/pnp.ids
Add-Content -Path "nwinfo\pnp.ids" -Value "# Version: $(Get-Date -Format 'yyyy.MM.dd')"
wget -o libcdi.zip https://github.com/a1ive/libcdi/releases/download/latest/libcdi.zip
Expand-Archive -Path libcdi.zip -DestinationPath libcdi_dll
copy libcdi_dll\libcdi\x86\libcdi.dll nwinfo\libcdi.Win32.dll
copy libcdi_dll\libcdi\x64\libcdi.dll nwinfo\libcdi.x64.dll
- name: Run UPX
uses: crazy-max/ghaction-upx@v3
Expand Down
Binary file removed libcdi/libcdi.Win32.dll
Binary file not shown.
Binary file removed libcdi/libcdi.x64.dll
Binary file not shown.

0 comments on commit f64e517

Please sign in to comment.