meson test #376
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build | |
on: | |
push: | |
pull_request: | |
jobs: | |
Windows: | |
runs-on: windows-latest | |
steps: | |
# Checks-out | |
- uses: actions/checkout@v2 | |
- uses: ilammy/msvc-dev-cmd@v1 | |
- name: Install Meson | |
run: | | |
pip install meson | |
#don't use run-cmake for windows because only one build should add warnings to pull request | |
- name: Build Debug | |
run: | | |
meson setup debug --buildtype=debug --backend=vs | |
meson compile -C debug | |
- name: Upload ryzenadj debug | |
uses: actions/upload-artifact@v2 | |
with: | |
name: ryzenadj-win64-debug | |
path: | | |
debug/ryzenadj.exe | |
debug/libryzenadj.dll | |
- name: Build Release | |
run: | | |
meson setup build --buildtype=release --backend=vs | |
meson compile -C build | |
- name: Prepair Release Folder | |
run: | | |
mkdir release | |
copy build/ryzenadj.exe release/ | |
copy build/libryzenadj.dll release/ | |
copy win32/* release/ | |
copy examples/* release/ | |
# - name: Test Scripts | |
# shell: pwsh | |
# run: | | |
# cd release | |
# $expectedOutput = "Not AMD processor, must be kidding" | |
# $cmdDemoOutput = '' | cmd.exe /c .\demo.bat | |
# if ($cmdDemoOutput -notcontains $expectedOutput){ | |
# Write-Error "$cmdDemoOutput" | |
# exit 1 | |
# } | |
# $psServiceOutput = Powershell .\readjustService.ps1 -noGUI | |
# if ($psServiceOutput -ne $expectedOutput){ | |
# Write-Error "$psServiceOutput" | |
# exit 1 | |
# } | |
# $pythonOutput = python pmtable-example.py | |
# if ($pythonOutput -notcontains $expectedOutput){ | |
# Write-Error "$pythonOutput" | |
# exit 1 | |
# } | |
# $pythonOutput = python readjust.py | |
# if ($pythonOutput -notcontains $expectedOutput){ | |
# Write-Error "$pythonOutput" | |
# exit 1 | |
# } | |
# exit 0 | |
- name: Upload ryzenadj | |
uses: actions/upload-artifact@v2 | |
with: | |
name: ryzenadj-win64 | |
path: | | |
release/ | |
!release/*.lib | |
!release/*.exp | |
- name: Upload libryzenadj | |
uses: actions/upload-artifact@v2 | |
with: | |
name: libryzenadj-win64 | |
path: | | |
./build/libryzenadj.dll | |
./build/libryzenadj.lib | |
./lib/ryzenadj.h | |
./win32/inpoutx64.dll | |
./win32/WinRing0x64.dll | |
./win32/WinRing0x64.sys | |
Linux: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Install Dependencies | |
run: | | |
sudo apt-get update | |
sudo apt-get install -y libpci-dev meson ninja-build | |
- name: Meson Build | |
run: | | |
meson setup build --buildtype=release | |
meson compile -C build | |
# - name: Test Scripts | |
# shell: bash | |
# run: | | |
# cd examples | |
# export LD_LIBRARY_PATH="${{ github.workspace }}/build/" | |
# expectedOutput="Not AMD processor, must be kidding" | |
# pythonOutput=$(python pmtable-example.py 2>&1) || true | |
# if [[ ! "$pythonOutput" =~ "$expectedOutput" ]]; then | |
# echo "pmtable-example.py output: $pythonOutput" | |
# exit 1 | |
# fi | |
# pythonOutput=$(python readjust.py 2>&1) || true | |
# if [[ ! "$pythonOutput" =~ "$expectedOutput" ]]; then | |
# echo "readjust.py output: $pythonOutput" | |
# exit 1 | |
# fi | |
# exit 0 | |