2024-02-05 22:25:30 -08:00
|
|
|
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
|
|
|
|
steps:
|
|
|
|
- name: Check out repository code
|
|
|
|
uses: actions/checkout@v3
|
|
|
|
|
|
|
|
- name: Generating Documentation
|
|
|
|
run: |
|
|
|
|
doxygen ehs-docs-config.doxyfile
|
|
|
|
|
|
|
|
- name: Building/Compiling/Installing Project
|
|
|
|
run: |
|
|
|
|
cd ${{ gitea.workspace }}
|
2024-09-29 21:06:30 -07:00
|
|
|
vcpkg install
|
2024-09-30 19:55:44 -07:00
|
|
|
mkdir build
|
2024-02-05 22:25:30 -08:00
|
|
|
cd build
|
2024-09-30 19:55:44 -07:00
|
|
|
cmake -A x64 -DCMAKE_BUILD_TYPE=Release ..
|
2024-02-05 22:25:30 -08:00
|
|
|
cmake --build . --config Release
|
2024-02-05 22:54:47 -08:00
|
|
|
cmake --install .
|
2024-02-05 22:25:30 -08:00
|
|
|
|
|
|
|
- name: Creating Appropriate Directories
|
|
|
|
run: |
|
|
|
|
cd ${{ gitea.workspace }}
|
|
|
|
mkdir bin
|
|
|
|
mv build/Release/StrToHash.exe bin
|
|
|
|
mv build/Release/zlib1.dll bin
|
|
|
|
mkdir lib
|
|
|
|
mv build/Release/EHS.lib lib
|
|
|
|
|
|
|
|
- name: Zipping Binaries
|
|
|
|
run: |
|
|
|
|
cd ${{ gitea.workspace }}
|
|
|
|
tar -a -c -f ehs-windows-amd64.zip include bin lib docs LICENSE README.md
|
|
|
|
|
|
|
|
- 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: |-
|
|
|
|
ehs-windows-amd64.zip
|
2024-09-30 19:22:22 -07:00
|
|
|
token: '${{secrets.RELEASE_TOKEN}}'
|
2024-02-05 22:25:30 -08:00
|
|
|
|
|
|
|
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
|
|
|
|
|
|
|
|
- name: Generating Documentation
|
|
|
|
run: |
|
|
|
|
doxygen ehs-docs-config.doxyfile
|
|
|
|
|
|
|
|
- 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: Creating Appropriate Directories
|
|
|
|
run: |
|
|
|
|
mkdir bin
|
|
|
|
mv StrToHash bin
|
|
|
|
mkdir lib
|
|
|
|
mv libEHS.a lib
|
|
|
|
|
|
|
|
- name: Zipping Binaries
|
|
|
|
run: zip -r ehs-linux-amd64.zip include bin lib docs LICENSE RADME.md
|
|
|
|
|
|
|
|
- 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: |-
|
|
|
|
ehs-linux-amd64.zip
|
|
|
|
api_key: '${{secrets.RELEASE_TOKEN}}'
|
|
|
|
|
|
|
|
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
|
|
|
|
|
|
|
|
- name: Generating Documentation
|
|
|
|
run: |
|
|
|
|
doxygen ehs-docs-config.doxyfile
|
|
|
|
|
|
|
|
- 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: Creating Appropriate Directories
|
|
|
|
run: |
|
|
|
|
mkdir bin
|
|
|
|
mv StrToHash bin
|
|
|
|
mkdir lib
|
|
|
|
mv libEHS.a lib
|
|
|
|
|
|
|
|
- name: Zipping Binaries
|
|
|
|
run: zip -r ehs-linux-aarch64.zip include bin lib docs LICENSE README.md
|
|
|
|
|
|
|
|
- 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: |-
|
|
|
|
ehs-linux-aarch64.zip
|
|
|
|
api_key: '${{secrets.RELEASE_TOKEN}}'
|