Build and Release #64
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: Build and Release | |
on: | |
release: | |
types: [created, published, edited, prereleased] | |
jobs: | |
build: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [ubuntu-latest, windows-latest, macos-latest] | |
arch: [x86, x64, arm64] | |
include: | |
- os: ubuntu-latest | |
arch: x86 | |
c_compiler: gcc | |
cpp_compiler: g++ | |
- os: ubuntu-latest | |
arch: x64 | |
c_compiler: gcc | |
cpp_compiler: g++ | |
- os: ubuntu-latest | |
arch: arm64 | |
c_compiler: gcc | |
cpp_compiler: g++ | |
- os: windows-latest | |
arch: x86 | |
c_compiler: cl | |
cpp_compiler: cl | |
- os: windows-latest | |
arch: x64 | |
c_compiler: cl | |
cpp_compiler: cl | |
- os: windows-latest | |
arch: arm64 | |
c_compiler: cl | |
cpp_compiler: cl | |
- os: macos-latest | |
arch: x86 | |
c_compiler: clang | |
cpp_compiler: clang++ | |
- os: macos-latest | |
arch: x64 | |
c_compiler: clang | |
cpp_compiler: clang++ | |
- os: macos-latest | |
arch: arm64 | |
c_compiler: clang | |
cpp_compiler: clang++ | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Configure CMake | |
run: | | |
cmake -B build -DCMAKE_CXX_COMPILER=${{ matrix.cpp_compiler }} -DCMAKE_C_COMPILER=${{ matrix.c_compiler }} -DCMAKE_BUILD_TYPE=Release -S ${{ github.workspace }} -DCMAKE_CXX_FLAGS_RELEASE="-O3" | |
- name: Build | |
run: cmake --build build --config Release | |
- name: Download Source Code | |
run: | | |
git clone --depth 1 https://github.com/aq-org/AQ.git src | |
- name: Set OS name (Linux) | |
if: matrix.os == 'ubuntu-latest' | |
run: | | |
echo "linux" >> $GITHUB_ENV | |
- name: Set OS name (Windows) | |
if: matrix.os == 'windows-latest' | |
run: | | |
echo "windows" >> $GITHUB_ENV | |
- name: Set OS name (macOS) | |
if: matrix.os == 'macos-latest' | |
run: | | |
echo "macos" >> $GITHUB_ENV | |
- name: Upload artifact | |
uses: actions/upload-artifact@v3 | |
with: | |
name: aq-${{ github.event.release.tag_name }}-${{ env.OS_NAME }}-${{ matrix.arch }} | |
path: build/* | |
- name: Compress Release Asset (Ubuntu) | |
if: matrix.os == 'ubuntu-latest' | |
run: | | |
zip -r aq-${{ github.event.release.tag_name }}-${{ env.OS_NAME }}-${{ matrix.arch }}.zip build | |
- name: Compress Release Asset (Windows) | |
if: matrix.os == 'windows-latest' | |
run: | | |
powershell Compress-Archive -Path build\* -DestinationPath aq-${{ github.event.release.tag_name }}-${{ env.OS_NAME }}-${{ matrix.arch }}.zip | |
- name: Compress Release Asset (macOS) | |
if: matrix.os == 'macos-latest' | |
run: | | |
zip -r aq-${{ github.event.release.tag_name }}-${{ env.OS_NAME }}-${{ matrix.arch }}.zip build | |
- name: Upload Release Asset | |
uses: actions/upload-release-asset@v1 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
upload_url: ${{ github.event.release.upload_url }} | |
asset_path: aq-${{ github.event.release.tag_name }}-${{ env.OS_NAME }}-${{ matrix.arch }}.zip | |
asset_name: aq-${{ github.event.release.tag_name }}-${{ env.OS_NAME }}-${{ matrix.arch }}.zip | |
asset_content_type: application/zip |