Release #32
Workflow file for this run
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: Release | |
on: | |
release: | |
types: | |
- created | |
env: | |
BUILD_TYPE: release | |
jobs: | |
build-windows: | |
name: Build (Windows) | |
runs-on: windows-latest | |
steps: | |
- name: Check out git repository | |
uses: actions/checkout@v3 | |
with: | |
submodules: true | |
- name: Install Node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 18 | |
- name: Set version | |
run: node -e "const fs=require('fs');fs.writeFileSync('CMakeLists.txt',fs.readFileSync('CMakeLists.txt','utf-8').replace(/1\.0\.0/g,'${{ github.ref }}'.replace('refs/tags/','')))" | |
- name: Build x64 | |
run: | | |
node patch | |
mkdir build | |
cd build | |
cmake -G "Visual Studio 17 2022" -A x64 .. -DCMAKE_BUILD_TYPE=MinSizeRel | |
cmake --build . --config MinSizeRel | |
- name: Upload binaries to release | |
uses: svenstaro/upload-release-action@v2 | |
with: | |
repo_token: ${{ secrets.GITHUB_TOKEN }} | |
file: ${{ github.workspace }}/build/EIMHost_artefacts/MinSizeRel/EIMHost.exe | |
tag: ${{ github.ref }} | |
asset_name: EIMHost-x64.exe | |
- name: Build x86 | |
run: | | |
rm -r build | |
mkdir build | |
cd build | |
cmake -G "Visual Studio 17 2022" -A Win32 .. -DCMAKE_BUILD_TYPE=MinSizeRel | |
cmake --build . --config MinSizeRel | |
- name: Upload binaries to release | |
uses: svenstaro/upload-release-action@v2 | |
with: | |
repo_token: ${{ secrets.GITHUB_TOKEN }} | |
file: ${{ github.workspace }}/build/EIMHost_artefacts/MinSizeRel/EIMHost.exe | |
tag: ${{ github.ref }} | |
asset_name: EIMHost-x86.exe | |
build-macos: | |
name: Build (MacOS) | |
runs-on: macos-latest | |
steps: | |
- name: Check out git repository | |
uses: actions/checkout@v3 | |
with: | |
submodules: true | |
- name: Install Node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 18 | |
- name: Set version | |
run: node -e "const fs=require('fs');fs.writeFileSync('CMakeLists.txt',fs.readFileSync('CMakeLists.txt','utf-8').replace(/1\.0\.0/g,'${{ github.ref }}'.replace('refs/tags/','')))" | |
- name: Build | |
run: | | |
node patch | |
mkdir build | |
cd build | |
brew install ninja | |
cmake -G Ninja .. -DCMAKE_BUILD_TYPE=MinSizeRel | |
cmake --build . --config MinSizeRel | |
cd build/EIMHost_artefacts/MinSizeRel && zip -r -q EIMHost.zip EIMHost.app | |
- name: Upload binaries to release | |
uses: svenstaro/upload-release-action@v2 | |
with: | |
repo_token: ${{ secrets.GITHUB_TOKEN }} | |
file: ${{ github.workspace }}/build/EIMHost_artefacts/MinSizeRel/EIMHost.zip | |
tag: ${{ github.ref }} | |
asset_name: EIMHost-MacOS.zip | |
build-linux: | |
name: Build (Linux) | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out git repository | |
uses: actions/checkout@v3 | |
with: | |
submodules: true | |
- name: Install Node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 18 | |
- name: Set version | |
run: node -e "const fs=require('fs');fs.writeFileSync('CMakeLists.txt',fs.readFileSync('CMakeLists.txt','utf-8').replace(/1\.0\.0/g,'${{ github.ref }}'.replace('refs/tags/','')))" | |
- name: Build | |
run: | | |
mkdir build | |
cd build | |
sudo apt-get install ninja-build libasound2-dev ladspa-sdk libfreetype6-dev libx11-dev libxcomposite-dev libxcursor-dev libxcursor-dev libxext-dev libxinerama-dev libxrandr-dev libxrender-dev | |
cmake -G Ninja .. -DCMAKE_BUILD_TYPE=MinSizeRel | |
cmake --build . --config MinSizeRel | |
- name: Upload binaries to release | |
uses: svenstaro/upload-release-action@v2 | |
with: | |
repo_token: ${{ secrets.GITHUB_TOKEN }} | |
file: ${{ github.workspace }}/build/EIMHost_artefacts/MinSizeRel/EIMHost | |
tag: ${{ github.ref }} | |
asset_name: EIMHost-Linux |