aboutsummaryrefslogtreecommitdiff
path: root/.github/workflows/nx-libs.yml
blob: cc4878498541e0d01c35a0e23c29ebdac0a1b8a5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
name: nx-libs CI

on:
  push:
    branches: [ 3.6.x ]
  pull_request:
    branches: [ 3.6.x ]

jobs:
 build:
  name: Build on ${{ matrix.cfg.container }} - ${{ matrix.cfg.cpp-version }}
  runs-on: ubuntu-latest
  container: ${{ matrix.cfg.container }}
  strategy:
    fail-fast: false
    matrix:
      cfg:
        - { container: 'ubuntu:16.04', cpp-version: gcc }
        - { container: 'ubuntu:16.04', cpp-version: clang }
        - { container: 'ubuntu:20.04', cpp-version: gcc }
        - { container: 'ubuntu:20.04', cpp-version: clang }
        - { container: 'debian:stable', cpp-version: gcc }
        - { container: 'debian:stable', cpp-version: clang }
        - { container: 'debian:sid', cpp-version: gcc }
        - { container: 'debian:sid', cpp-version: clang }
        - { container: 'centos:7', cpp-version: gcc }
        - { container: 'centos:7', cpp-version: clang }
        - { container: 'centos:8', cpp-version: gcc }
        - { container: 'centos:8', cpp-version: clang }
        - { container: 'fedora:latest', cpp-version: gcc }
        - { container: 'fedora:latest', cpp-version: clang }

  steps:
  - name: Install compiler ${{ matrix.cfg.cpp-version }}
    shell: sh
    run: |
      case "${{ matrix.cfg.container }}" in
        ubuntu*|debian*)
          cat /etc/debian_version
          apt-get update -q -y
          apt-get install -q -y ${{ matrix.cfg.cpp-version }}
          ${{ matrix.cfg.cpp-version }} --version
          ;;
        fedora*)
          cat /etc/fedora-release
          dnf -y update
          dnf -y install ${{ matrix.cfg.cpp-version }}
          ${{ matrix.cfg.cpp-version }} --version
          ;;
        centos*)
          cat /etc/centos-release
          yum -y update
          yum -y install ${{ matrix.cfg.cpp-version }}
          ${{ matrix.cfg.cpp-version }} --version
          ;;
      esac