Example 22, PubSub features. Fixed builds and bugs #589
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: C/C++ CI | |
on: | |
push: # Keep empty to run on each branch when push the code. Otherwise, use branches: [ master ] | |
pull_request: # Set to master to run only when merge with master branch | |
branches: [ master ] | |
env: | |
# Customize the CMake build type here (Release, Debug, RelWithDebInfo, etc.) | |
BUILD_TYPE: Release | |
jobs: | |
build-tests: | |
name: ${{matrix.config.name}} | |
runs-on: ${{matrix.config.os}} | |
strategy: | |
fail-fast: false | |
matrix: | |
config: # Create matrix with combinations | |
# compile AREG engine as a shared library with GNU g++ / gcc on Ubuntu Linux, enable AREG extensions and logs | |
- { name: linux-gnu-shared-ext-log, os: ubuntu-latest, lib: shared, family: gnu, cxx: g++, cc: gcc, extend: 1, logs: 1} | |
# compile AREG engine as a shared library with GNU g++ / gcc on Ubuntu Linux, enable AREG extensions and no logs | |
- { name: linux-gnu-shared-ext-nolog, os: ubuntu-latest, lib: shared, family: gnu, cxx: g++, cc: gcc, extend: 1, logs: 1} | |
# compile AREG engine as a static library with GNU g++ / gcc on Ubuntu Linux, enable AREG extensions and logs | |
- { name: linux-gnu-static-ext-log, os: ubuntu-latest, lib: static, family: gnu, cxx: g++, cc: gcc, extend: 1, logs: 1} | |
# compile AREG engine as a shared library with GNU g++ / gcc on Ubuntu Linux, disable AREG extensions and logs | |
- { name: linux-gnu-shared-noext-log, os: ubuntu-latest, lib: shared, family: gnu, cxx: g++, cc: gcc, extend: 0, logs: 1} | |
# compile AREG engine as a shared library with GNU g++ / gcc on Ubuntu Linux, disable AREG extensions and no logs | |
- { name: linux-gnu-shared-noext-nolog, os: ubuntu-latest, lib: shared, family: gnu, cxx: g++, cc: gcc, extend: 0, logs: 0} | |
# compile AREG engine as a shared library with clang on Ubuntu Linux, enable AREG extensions and logs | |
- { name: linux-clang-shared-ext-log, os: ubuntu-latest, lib: shared, family: llvm, cxx: clang++, cc: clang, extend: 1, logs: 1} | |
# compile AREG engine as a shared library with clang on Ubuntu Linux, enable AREG extensions and no logs | |
- { name: linux-clang-shared-ext-nolog, os: ubuntu-latest, lib: shared, family: llvm, cxx: clang++, cc: clang, extend: 1, logs: 0} | |
# compile AREG engine as a static library with clang on Ubuntu Linux, enable AREG extensions and logs | |
- { name: linux-clang-static-ext-log, os: ubuntu-latest, lib: static, family: llvm, cxx: clang++, cc: clang, extend: 1, logs: 1} | |
# compile AREG engine as a shared library with clang on Ubuntu Linux, disable AREG extensions and logs | |
- { name: linux-clang-shared-noext-log, os: ubuntu-latest, lib: shared, family: llvm, cxx: clang++, cc: clang, extend: 0, logs: 1} | |
# compile AREG engine as a shared library with clang on Ubuntu Linux, disable AREG extensions and no logs | |
- { name: linux-clang-shared-noext-nolog,os: ubuntu-latest,lib: shared, family: llvm, cxx: clang++, cc: clang, extend: 0, logs: 0} | |
# compile AREG engine as a shared with CYGWIN g++ / gcc on Windows, enable AREG extensions and logs | |
- { name: win-cygwin-shared-ext-log, os: windows-latest, lib: shared, family: cygwin, cxx: g++, cc: gcc, extend: 1, logs: 1} | |
# compile AREG engine as a shared with CYGWIN g++ / gcc on Windows, enable AREG extensions and no logs | |
- { name: win-cygwin-shared-ext-nolog,os: windows-latest, lib: shared, family: cygwin, cxx: g++, cc: gcc, extend: 1, logs: 0} | |
# compile AREG engine as a static with CYGWIN g++ / gcc on Windows, enable AREG extensions and logs | |
- { name: win-cygwin-static-ext-log, os: windows-latest, lib: static, family: cygwin, cxx: g++, cc: gcc, extend: 1, logs: 1} | |
# compile AREG engine as a shared with CYGWIN g++ / gcc on Windows, disable AREG extensions and logs | |
- { name: win-cygwin-shared-noext-log,os: windows-latest, lib: shared, family: cygwin, cxx: g++, cc: gcc, extend: 0, logs: 1} | |
# compile AREG engine as a shared with CYGWIN g++ / gcc on Windows, disable AREG extensions and no logs | |
- { name: win-cygwin-shared-noext-nolog,os: windows-latest,lib: shared, family: cygwin, cxx: g++, cc: gcc, extend: 0, logs: 0} | |
steps: | |
- name: Checkout AREG engine (AREG SDK) source codes and dependencies | |
uses: actions/checkout@v3 | |
with: | |
submodules: recursive | |
- name: Update compilers on Linux | |
if: matrix.config.os == 'ubuntu-latest' | |
# Update compilers, set C/C++ compilers | |
run: | | |
sudo apt-get update | |
export CC=/usr/bin/${{matrix.config.cc}} CXX=/usr/bin/${{matrix.config.cxx}} | |
- name: Fetch cygwin installer on Windows | |
if: matrix.config.os == 'windows-latest' && matrix.config.family == 'cygwin' | |
shell: powershell | |
run: Invoke-WebRequest https://cygwin.com/setup-x86_64.exe -OutFile C:\setup.exe | |
- name: Install cygwin on Windows | |
if: matrix.config.os == 'windows-latest' && matrix.config.family == 'cygwin' | |
shell: cmd | |
run: | | |
c:\setup.exe -qgnO -s http://mirrors.kernel.org/sourceware/cygwin/ -l C:\cygwin-packages\ -P ^ | |
cmake,^ | |
dos2unix,^ | |
extra-cmake-modules,^ | |
flexdll,^ | |
gcc-g++,^ | |
make,^ | |
ncurses,^ | |
libncurses-devel | |
- name: set Windows PATH environment variable | |
if: matrix.config.os == 'windows-latest' && matrix.config.family == 'cygwin' | |
run: echo "PATH=C:\cygwin64;C:\cygwin64\bin;C:\cygwin64\lib;%SYSTEMROOT%\system32;%PATH%" | Out-File -FilePath $env:GITHUB_ENV -Encoding utf8 -Append | |
- name: Build with selected compiler family and enabled extensions | |
if: matrix.config.extend == '1' | |
working-directory: ${{github.workspace}} | |
# Build your program with the given configuration | |
run: make AREG_COMPILER_FAMILY=${{matrix.config.family}} AREG_BUILD_TYPE=${{env.BUILD_TYPE}} AREG_BINARY=${{matrix.config.lib}} AREG_EXTENDED=${{matrix.config.extend}} AREG_LOGS=${{matrix.config.logs}} all -j10 | |
- name: Build with selected compiler and disabled extensions | |
if: matrix.config.extend == '0' | |
working-directory: ${{github.workspace}} | |
# Build your program with the given configuration | |
run: make AREG_COMPILER=${{matrix.config.cc}} AREG_BUILD_TYPE=${{env.BUILD_TYPE}} AREG_BINARY=${{matrix.config.lib}} AREG_EXTENDED=${{matrix.config.extend}} AREG_LOGS=${{matrix.config.logs}} all -j10 |