- Update workflow #14
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: Studio26F Main CI | |
permissions: write-all | |
on: | |
push: | |
branches: [ ci-*, main ] | |
tags: [ pre*, v* ] | |
pull_request: | |
branches: [ main ] | |
jobs: | |
get-info: | |
runs-on: ubuntu-latest | |
outputs: | |
commitHash: ${{ steps.git-info.outputs.commitHash }} | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Get git info | |
id: git-info | |
shell: bash | |
run: | | |
COMMIT_HASH=$(git rev-parse --short ${{ GITHUB.SHA }}) | |
echo "commitHash=$COMMIT_HASH" >> $GITHUB_OUTPUT | |
build-linux: | |
runs-on: ubuntu-24.04 | |
needs: get-info | |
env: | |
OUTPUT_FOLDER: ./build | |
RELEASE_FOLDER: ./release | |
strategy: | |
matrix: | |
config: [ Debug, Release ] | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
submodules: 'recursive' | |
- name: Setup CMake | |
uses: lukka/get-cmake@latest | |
- name: Setup vcpkg | |
uses: lukka/run-vcpkg@v11 | |
- name: CMake Configure and Build | |
env: | |
CC: gcc-14 | |
CXX: g++-14 | |
run: | | |
cmake -S "${{ github.workspace }}" -B "${{ github.workspace }}/${{ env.OUTPUT_FOLDER }}" -DCMAKE_BUILD_TYPE=${{ matrix.config }} | |
cmake --build "${{ github.workspace }}/${{ env.OUTPUT_FOLDER }}" --target Studio26F | |
- name: Upload Artifacts | |
uses: actions/upload-artifact@v4 | |
with: | |
name: Studio26F_${{ needs.get-info.outputs.commitHash }}_${{ GITHUB.RUN_NUMBER }}_Linux_${{ matrix.config }} | |
path: "${{ env.OUTPUT_FOLDER }}/Studio26F" | |
- name: Prepare for release | |
if: ${{ (startsWith(github.ref, 'refs/tags/pre') || startsWith(github.ref, 'refs/tags/v')) && matrix.config == 'release'}} | |
shell: bash | |
run: | | |
mkdir -p ${{ env.RELEASE_FOLDER }} | |
cp ${{ env.OUTPUT_FOLDER }}/Studio26F ${{ env.RELEASE_FOLDER }} | |
- name: Upload release | |
if: ${{ (startsWith(github.ref, 'refs/tags/pre') || startsWith(github.ref, 'refs/tags/v')) && matrix.config == 'release'}} | |
uses: ncipollo/release-action@v1 | |
with: | |
allowUpdates: true | |
artifacts: | | |
${{ env.RELEASE_FOLDER }}/* | |
prerelease: ${{ startsWith(github.ref, 'refs/tags/pre') }} | |
build-windows: | |
runs-on: windows-latest | |
needs: get-info | |
env: | |
OUTPUT_FOLDER: ./build | |
RELEASE_FOLDER: ./release | |
strategy: | |
matrix: | |
config: [ Debug, Release ] | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
submodules: 'recursive' | |
- name: Setup CMake | |
uses: lukka/get-cmake@latest | |
- name: Setup vcpkg | |
uses: lukka/run-vcpkg@v11 | |
- name: CMake Configure and Build | |
run: | | |
cmake -S "${{ github.workspace }}" -B "${{ github.workspace }}/${{ env.OUTPUT_FOLDER }}" | |
cmake --build "${{ github.workspace }}/${{ env.OUTPUT_FOLDER }}" --target Studio26F --config ${{ matrix.config }} | |
- name: Upload Artifacts | |
uses: actions/upload-artifact@v4 | |
with: | |
name: Studio26F_${{ needs.get-info.outputs.commitHash }}_${{ GITHUB.RUN_NUMBER }}_Windows_${{ matrix.config }} | |
path: "${{ env.OUTPUT_FOLDER }}/${{ matrix.config }}" | |
- name: Prepare for release | |
if: ${{ (startsWith(github.ref, 'refs/tags/pre') || startsWith(github.ref, 'refs/tags/v')) && matrix.config == 'release'}} | |
shell: bash | |
run: | | |
mkdir -p ${{ env.RELEASE_FOLDER }} | |
cp ${{ env.OUTPUT_FOLDER }}/*.dll ${{ env.RELEASE_FOLDER }} | |
cp ${{ env.OUTPUT_FOLDER }}/*.exe ${{ env.RELEASE_FOLDER }} | |
- name: Upload release | |
if: ${{ (startsWith(github.ref, 'refs/tags/pre') || startsWith(github.ref, 'refs/tags/v')) && matrix.config == 'release'}} | |
uses: ncipollo/release-action@v1 | |
with: | |
allowUpdates: true | |
artifacts: | | |
${{ env.RELEASE_FOLDER }}/* | |
prerelease: ${{ startsWith(github.ref, 'refs/tags/pre') }} |