107 lines
3.1 KiB
YAML
107 lines
3.1 KiB
YAML
name: Build & Release
|
|
run-name: ${{ gitea.actor }} is testing out Gitea Actions
|
|
on:
|
|
push:
|
|
tags:
|
|
- "v*"
|
|
|
|
jobs:
|
|
Windows-AMD64-Build:
|
|
runs-on: windows-x86_64
|
|
defaults:
|
|
run:
|
|
shell: powershell
|
|
steps:
|
|
- name: Check out repository code
|
|
uses: actions/checkout@v3
|
|
|
|
- name: Building/Compiling/Installing Project
|
|
run: |
|
|
cd ${{ gitea.workspace }}
|
|
mkdir build
|
|
cd build
|
|
cmake -A x64 -DCMAKE_BUILD_TYPE=Release -DCMAKE_TOOLCHAIN_FILE="$env:VCPKG_ROOT\scripts\buildsystems\vcpkg.cmake" ..
|
|
cmake --build . --config Release
|
|
|
|
- name: Zipping Binaries
|
|
run: |
|
|
cd ${{ gitea.workspace }}
|
|
tar -a -c -f device-scanner-windows-amd64.zip build/Release/DeviceScanner.exe
|
|
|
|
- uses: https://github.com/actions/setup-go@v4
|
|
with:
|
|
go-version: '>=1.20.1'
|
|
|
|
- name: Use Go Action
|
|
id: use-go-action
|
|
uses: https://gitea.com/actions/release-action@main
|
|
with:
|
|
files: |-
|
|
device-scanner-windows-amd64.zip
|
|
api_key: '${{secrets.RELEASE_TOKEN}}'
|
|
pre_release: false
|
|
|
|
Linux-AMD64-Build:
|
|
runs-on: linux-x86_64
|
|
steps:
|
|
- name: Check out repository code
|
|
uses: actions/checkout@v3
|
|
|
|
- name: Installing Dependencies
|
|
run: |
|
|
sudo pacman -S --noconfirm doxygen zip alsa-lib libxcb xcb-util-cursor pipewire
|
|
|
|
- name: Building/Compiling/Installing Project
|
|
run: |
|
|
cd ${{ gitea.workspace }}
|
|
cmake -DCMAKE_BUILD_TYPE=Release -DLINUX_WINDOW_SYSTEM:STRING=XCB .
|
|
cmake --build . --config Release
|
|
cmake --install .
|
|
|
|
- name: Zipping Binaries
|
|
run: zip -r device-scanner-linux-amd64.zip DeviceScanner
|
|
|
|
- uses: https://github.com/actions/setup-go@v4
|
|
with:
|
|
go-version: '>=1.20.1'
|
|
|
|
- name: Use Go Action
|
|
id: use-go-action
|
|
uses: https://gitea.com/actions/release-action@main
|
|
with:
|
|
files: |-
|
|
device-scanner-linux-amd64.zip
|
|
api_key: '${{secrets.RELEASE_TOKEN}}'
|
|
pre_release: false
|
|
|
|
Linux-AARCH64-Build:
|
|
runs-on: linux-aarch64
|
|
steps:
|
|
- name: Check out repository code
|
|
uses: actions/checkout@v3
|
|
|
|
- name: Installing Dependencies
|
|
run: sudo apt install -y doxygen zip libasound2-dev libxcb1-dev libxcb-xinput-dev libxcb-cursor-dev libpipewire-0.3-dev
|
|
|
|
- name: Building/Compiling/Installing Project
|
|
run: |
|
|
cd ${{ gitea.workspace }}
|
|
cmake -DCMAKE_BUILD_TYPE=Release -DLINUX_WINDOW_SYSTEM:STRING=XCB .
|
|
cmake --build . --config Release
|
|
cmake --install .
|
|
|
|
- name: Zipping Binaries
|
|
run: zip -r device-scanner-linux-aarch64.zip DeviceScanner
|
|
|
|
- uses: https://github.com/actions/setup-go@v4
|
|
with:
|
|
go-version: '>=1.20.1'
|
|
|
|
- name: Use Go Action
|
|
id: use-go-action
|
|
uses: https://gitea.com/actions/release-action@main
|
|
with:
|
|
files: |-
|
|
device-scanner-linux-aarch64.zip
|
|
api_key: '${{secrets.RELEASE_TOKEN}}'
|
|
pre_release: false |