aboutsummaryrefslogtreecommitdiffstats
path: root/demos/TIVA/RT-TM4C123G-LAUNCHPAD/.cproject
diff options
context:
space:
mode:
Diffstat (limited to 'demos/TIVA/RT-TM4C123G-LAUNCHPAD/.cproject')
0 files changed, 0 insertions, 0 deletions
> 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125
name: Build and run tests (Linux)

on: [push, pull_request]

jobs:
  test-linux:
    runs-on: ${{ matrix.os.id }}
    strategy:
      matrix:
        os:
          - { id: ubuntu-20.04, name: focal }
        compiler:
          - 'clang-12'
          - 'clang-11'
          - 'gcc-11'
          - 'gcc-10'
        cpp_std:
          - 'c++11'
          - 'c++14'
          - 'c++17'
          - 'c++20'
        include:
          # Limit the older compilers to C++11 mode
          - os: { id: ubuntu-18.04, name: bionic }
            compiler: 'clang-3.9'
            cpp_std: 'c++11'
          - os: { id: ubuntu-18.04, name: bionic }