Fix CI #18
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, workflow_dispatch] | |
jobs: | |
linux-build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@master | |
- name: Install dependencies | |
run: | | |
sudo apt update | |
sudo apt -y install build-essential cmake zlib1g-dev libgl1-mesa-dev libgl1-mesa-glx libusb-1.0-0-dev qtbase5-dev | |
- name: Build | |
run: | | |
mkdir build | |
cd build | |
cmake -DCMAKE_BUILD_TYPE=Release .. | |
make | |
cd .. | |
cp ./Linux/README ./build/bin/ | |
- name: Upload Artifacts | |
uses: actions/upload-artifact@master | |
with: | |
name: linux | |
path: ./build/bin/ | |
win-build: | |
runs-on: windows-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: msys2/setup-msys2@v2 | |
with: | |
update: true | |
install: >- | |
make | |
mingw-w64-x86_64-clang | |
mingw-w64-x86_64-cmake | |
mingw-w64-x86_64-libusb | |
mingw-w64-x86_64-qt5-base | |
mingw-w64-x86_64-qt5-static | |
mingw-w64-x86_64-qt5-tools | |
- name: Build | |
shell: msys2 {0} | |
run: | | |
export PATH="/mingw64/bin:$PATH" | |
mkdir build | |
cd build | |
cmake -G "MSYS Makefiles" -DCMAKE_BUILD_TYPE=Release .. | |
make | |
cd bin | |
windeployqt.exe --no-angle heimdall-frontend.exe | |
cd .. | |
cd .. | |
mkdir ./build/bin/Drivers/ | |
cp ./Win32/README.txt ./build/bin/ | |
cp ./Win32/Drivers/zadig.exe ./build/bin/Drivers/ | |
- name: Upload Artifacts | |
uses: actions/upload-artifact@master | |
with: | |
name: windows | |
path: ./build/bin/ |