|
| 1 | +name: 'build direwolf' |
| 2 | + |
| 3 | +on: |
| 4 | + # permit to manually trigger the CI |
| 5 | + workflow_dispatch: |
| 6 | + inputs: |
| 7 | + cmake_flags: |
| 8 | + description: 'Custom CMAKE flags' |
| 9 | + required: false |
| 10 | + push: |
| 11 | + paths-ignore: |
| 12 | + - '.github/**' |
| 13 | + pull_request: |
| 14 | + paths-ignore: |
| 15 | + - '.github/**' |
| 16 | + |
| 17 | +jobs: |
| 18 | + build: |
| 19 | + name: ${{ matrix.config.name }} |
| 20 | + runs-on: ${{ matrix.config.os }} |
| 21 | + strategy: |
| 22 | + fail-fast: false |
| 23 | + matrix: |
| 24 | + config: |
| 25 | + - { |
| 26 | + name: 'Windows Latest MinGW 64bit', |
| 27 | + os: windows-latest, |
| 28 | + cc: 'x86_64-w64-mingw32-gcc', |
| 29 | + cxx: 'x86_64-w64-mingw32-g++', |
| 30 | + ar: 'x86_64-w64-mingw32-ar', |
| 31 | + windres: 'x86_64-w64-mingw32-windres', |
| 32 | + arch: 'x86_64', |
| 33 | + build_type: 'Release', |
| 34 | + cmake_extra_flags: '-G "MinGW Makefiles"' |
| 35 | + } |
| 36 | + - { |
| 37 | + name: 'Windows 2019 MinGW 32bit', |
| 38 | + os: windows-2019, |
| 39 | + cc: 'i686-w64-mingw32-gcc', |
| 40 | + cxx: 'i686-w64-mingw32-g++', |
| 41 | + ar: 'i686-w64-mingw32-ar', |
| 42 | + windres: 'i686-w64-mingw32-windres', |
| 43 | + arch: 'i686', |
| 44 | + build_type: 'Release', |
| 45 | + cmake_extra_flags: '-G "MinGW Makefiles"' |
| 46 | + } |
| 47 | + - { |
| 48 | + name: 'macOS latest', |
| 49 | + os: macos-latest, |
| 50 | + cc: 'clang', |
| 51 | + cxx: 'clang++', |
| 52 | + arch: 'x86_64', |
| 53 | + build_type: 'Release', |
| 54 | + cmake_extra_flags: '' |
| 55 | + } |
| 56 | + - { |
| 57 | + name: 'Ubuntu latest Debug', |
| 58 | + os: ubuntu-latest, |
| 59 | + cc: 'gcc', |
| 60 | + cxx: 'g++', |
| 61 | + arch: 'x86_64', |
| 62 | + build_type: 'Debug', |
| 63 | + cmake_extra_flags: '' |
| 64 | + } |
| 65 | + - { |
| 66 | + name: 'Ubuntu 22.04', |
| 67 | + os: ubuntu-22.04, |
| 68 | + cc: 'gcc', |
| 69 | + cxx: 'g++', |
| 70 | + arch: 'x86_64', |
| 71 | + build_type: 'Release', |
| 72 | + cmake_extra_flags: '' |
| 73 | + } |
| 74 | + - { |
| 75 | + name: 'Ubuntu 20.04', |
| 76 | + os: ubuntu-20.04, |
| 77 | + cc: 'gcc', |
| 78 | + cxx: 'g++', |
| 79 | + arch: 'x86_64', |
| 80 | + build_type: 'Release', |
| 81 | + cmake_extra_flags: '' |
| 82 | + } |
| 83 | + |
| 84 | + steps: |
| 85 | + - name: checkout |
| 86 | + uses: actions/checkout@v2 |
| 87 | + with: |
| 88 | + fetch-depth: 8 |
| 89 | + - name: dependency |
| 90 | + shell: bash |
| 91 | + run: | |
| 92 | + # this is not perfect but enought for now |
| 93 | + if [ "$RUNNER_OS" == "Linux" ]; then |
| 94 | + sudo apt-get update |
| 95 | + sudo apt-get install libasound2-dev libudev-dev libhamlib-dev gpsd |
| 96 | + elif [ "$RUNNER_OS" == "macOS" ]; then |
| 97 | + # just to simplify I use homebrew but |
| 98 | + # we can use macports (latest direwolf is already available as port) |
| 99 | + brew install portaudio hamlib gpsd |
| 100 | + elif [ "$RUNNER_OS" == "Windows" ]; then |
| 101 | + # add the folder to PATH |
| 102 | + echo "C:\msys64\mingw32\bin" >> $GITHUB_PATH |
| 103 | + fi |
| 104 | + - name: create build environment |
| 105 | + run: | |
| 106 | + cmake -E make_directory ${{github.workspace}}/build |
| 107 | + - name: configure |
| 108 | + shell: bash |
| 109 | + working-directory: ${{github.workspace}}/build |
| 110 | + run: | |
| 111 | + if [ "$RUNNER_OS" == "Windows" ]; then |
| 112 | + export CC=${{ matrix.config.cc }} |
| 113 | + export CXX=${{ matrix.config.cxx }} |
| 114 | + export AR=${{ matrix.config.ar }} |
| 115 | + export WINDRES=${{ matrix.config.windres }} |
| 116 | + fi |
| 117 | + cmake $GITHUB_WORKSPACE \ |
| 118 | + -DCMAKE_BUILD_TYPE=${{ matrix.config.build_type }} \ |
| 119 | + -DCMAKE_C_COMPILER=${{ matrix.config.cc }} \ |
| 120 | + -DCMAKE_CXX_COMPILER=${{ matrix.config.cxx }} \ |
| 121 | + -DCMAKE_CXX_FLAGS="-Werror" -DUNITTEST=1 \ |
| 122 | + ${{ matrix.config.cmake_extra_flags }} \ |
| 123 | + ${{ github.event.inputs.cmake_flags }} |
| 124 | + - name: build |
| 125 | + shell: bash |
| 126 | + working-directory: ${{github.workspace}}/build |
| 127 | + run: | |
| 128 | + if [ "$RUNNER_OS" == "Windows" ]; then |
| 129 | + export CC=${{ matrix.config.cc }} |
| 130 | + export CXX=${{ matrix.config.cxx }} |
| 131 | + export AR=${{ matrix.config.ar }} |
| 132 | + export WINDRES=${{ matrix.config.windres }} |
| 133 | + fi |
| 134 | + cmake --build . --config ${{ matrix.config.build_type }} \ |
| 135 | + ${{ github.event.inputs.cmake_flags }} |
| 136 | + - name: test |
| 137 | + continue-on-error: true |
| 138 | + shell: bash |
| 139 | + working-directory: ${{github.workspace}}/build |
| 140 | + run: | |
| 141 | + ctest -C ${{ matrix.config.build_type }} \ |
| 142 | + --parallel 2 --output-on-failure \ |
| 143 | + ${{ github.event.inputs.cmake_flags }} |
| 144 | + - name: package |
| 145 | + shell: bash |
| 146 | + working-directory: ${{github.workspace}}/build |
| 147 | + run: | |
| 148 | + if [ "$RUNNER_OS" == "Windows" ] || [ "$RUNNER_OS" == "macOS" ]; then |
| 149 | + make package |
| 150 | + fi |
| 151 | + - name: archive binary |
| 152 | + uses: actions/upload-artifact@v2 |
| 153 | + with: |
| 154 | + name: direwolf_${{ matrix.config.os }}_${{ matrix.config.arch }}_${{ github.sha }} |
| 155 | + path: | |
| 156 | + ${{github.workspace}}/build/direwolf-*.zip |
| 157 | + ${{github.workspace}}/build/direwolf.conf |
| 158 | + ${{github.workspace}}/build/src/* |
| 159 | + ${{github.workspace}}/build/CMakeCache.txt |
| 160 | + !${{github.workspace}}/build/src/cmake_install.cmake |
| 161 | + !${{github.workspace}}/build/src/CMakeFiles |
| 162 | + !${{github.workspace}}/build/src/Makefile |
0 commit comments