File: linux.yml

package info (click to toggle)
vte2.91 0.83.90-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 9,864 kB
  • sloc: cpp: 97,071; ansic: 9,083; python: 3,224; sh: 996; perl: 100; makefile: 93; xml: 27; javascript: 4
file content (176 lines) | stat: -rw-r--r-- 7,514 bytes parent folder | download
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
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
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
name: linux

on: [push, pull_request]

permissions:
  contents: read

jobs:
  build:
    runs-on: ubuntu-22.04
    strategy:
      matrix:
        cxx: [g++-4.9, g++-11, clang++-3.6, clang++-11]
        build_type: [Debug, Release]
        std: [11]
        shared: [""]
        include:
          - cxx: g++-4.9
          - cxx: clang++-3.6
          - cxx: g++-11
            build_type: Debug
            std: 14
            install: sudo apt install g++-11
          - cxx: g++-11
            build_type: Debug
            std: 17
          - cxx: g++-11
            build_type: Debug
            std: 20
            install: sudo apt install g++-11
          - cxx: g++-13
            build_type: Release
            std: 23
            install: sudo apt install g++-13
            shared: -DBUILD_SHARED_LIBS=ON
          - cxx: clang++-11
            build_type: Debug
            std: 17
            cxxflags: -stdlib=libc++
            install: sudo apt install clang-11 libc++-11-dev libc++abi-11-dev
          - cxx: clang++-11
            install: sudo apt install clang-11
          - cxx: clang++-11
            build_type: Debug
            fuzz: -DFMT_FUZZ=ON -DFMT_FUZZ_LINKMAIN=ON
            std: 17
            install: sudo apt install clang-11
          - cxx: clang++-14
            build_type: Debug
            std: 20
          - cxx: clang++-14
            build_type: Debug
            std: 20
            cxxflags: -stdlib=libc++
            install: sudo apt install libc++-14-dev libc++abi-14-dev

    steps:
    - uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0

    - name: Set timezone
      run: sudo timedatectl set-timezone 'Europe/Kyiv'

    - name: Install GCC 4.9
      run: |
        sudo apt update
        sudo apt install libatomic1 libc6-dev libgomp1 libitm1 libmpc3
        # https://launchpad.net/ubuntu/xenial/amd64/g++-4.9/4.9.3-13ubuntu2
        wget --no-verbose \
          http://launchpadlibrarian.net/230069137/libmpfr4_3.1.3-2_amd64.deb \
          http://launchpadlibrarian.net/253728424/libasan1_4.9.3-13ubuntu2_amd64.deb \
          http://launchpadlibrarian.net/445346135/libubsan0_5.4.0-6ubuntu1~16.04.12_amd64.deb \
          http://launchpadlibrarian.net/445346112/libcilkrts5_5.4.0-6ubuntu1~16.04.12_amd64.deb \
          http://launchpadlibrarian.net/253728426/libgcc-4.9-dev_4.9.3-13ubuntu2_amd64.deb \
          http://launchpadlibrarian.net/253728432/libstdc++-4.9-dev_4.9.3-13ubuntu2_amd64.deb \
          http://launchpadlibrarian.net/253728314/gcc-4.9-base_4.9.3-13ubuntu2_amd64.deb \
          http://launchpadlibrarian.net/445345919/gcc-5-base_5.4.0-6ubuntu1~16.04.12_amd64.deb \
          http://launchpadlibrarian.net/253728399/cpp-4.9_4.9.3-13ubuntu2_amd64.deb \
          http://launchpadlibrarian.net/253728404/gcc-4.9_4.9.3-13ubuntu2_amd64.deb \
          http://launchpadlibrarian.net/253728401/g++-4.9_4.9.3-13ubuntu2_amd64.deb
        sudo dpkg -i \
          libmpfr4_3.1.3-2_amd64.deb \
          libasan1_4.9.3-13ubuntu2_amd64.deb \
          libubsan0_5.4.0-6ubuntu1~16.04.12_amd64.deb \
          libcilkrts5_5.4.0-6ubuntu1~16.04.12_amd64.deb \
          libgcc-4.9-dev_4.9.3-13ubuntu2_amd64.deb \
          libstdc++-4.9-dev_4.9.3-13ubuntu2_amd64.deb \
          gcc-4.9-base_4.9.3-13ubuntu2_amd64.deb \
          gcc-5-base_5.4.0-6ubuntu1~16.04.12_amd64.deb \
          cpp-4.9_4.9.3-13ubuntu2_amd64.deb \
          gcc-4.9_4.9.3-13ubuntu2_amd64.deb \
          g++-4.9_4.9.3-13ubuntu2_amd64.deb
      if: ${{ matrix.cxx == 'g++-4.9' }}

    - name: Install Clang 3.6
      run: |
        sudo apt update
        sudo apt install libtinfo5
        # https://code.launchpad.net/ubuntu/xenial/amd64/clang-3.6/1:3.6.2-3ubuntu2
        wget --no-verbose \
          http://launchpadlibrarian.net/230019046/libffi6_3.2.1-4_amd64.deb \
          http://launchpadlibrarian.net/445346109/libasan2_5.4.0-6ubuntu1~16.04.12_amd64.deb \
          http://launchpadlibrarian.net/445346135/libubsan0_5.4.0-6ubuntu1~16.04.12_amd64.deb \
          http://launchpadlibrarian.net/445346112/libcilkrts5_5.4.0-6ubuntu1~16.04.12_amd64.deb \
          http://launchpadlibrarian.net/445346128/libmpx0_5.4.0-6ubuntu1~16.04.12_amd64.deb \
          http://launchpadlibrarian.net/445346113/libgcc-5-dev_5.4.0-6ubuntu1~16.04.12_amd64.deb \
          http://launchpadlibrarian.net/445346131/libstdc++-5-dev_5.4.0-6ubuntu1~16.04.12_amd64.deb \
          http://launchpadlibrarian.net/445346022/libobjc-5-dev_5.4.0-6ubuntu1~16.04.12_amd64.deb \
          http://launchpadlibrarian.net/254405108/libllvm3.6v5_3.6.2-3ubuntu2_amd64.deb \
          http://launchpadlibrarian.net/254405097/libclang-common-3.6-dev_3.6.2-3ubuntu2_amd64.deb \
          http://launchpadlibrarian.net/254405101/libclang1-3.6_3.6.2-3ubuntu2_amd64.deb \
          http://launchpadlibrarian.net/445345919/gcc-5-base_5.4.0-6ubuntu1~16.04.12_amd64.deb \
          http://launchpadlibrarian.net/254405091/clang-3.6_3.6.2-3ubuntu2_amd64.deb
        sudo dpkg -i \
          libffi6_3.2.1-4_amd64.deb \
          libasan2_5.4.0-6ubuntu1~16.04.12_amd64.deb \
          libubsan0_5.4.0-6ubuntu1~16.04.12_amd64.deb \
          libcilkrts5_5.4.0-6ubuntu1~16.04.12_amd64.deb \
          libmpx0_5.4.0-6ubuntu1~16.04.12_amd64.deb \
          libgcc-5-dev_5.4.0-6ubuntu1~16.04.12_amd64.deb \
          libstdc++-5-dev_5.4.0-6ubuntu1~16.04.12_amd64.deb \
          libobjc-5-dev_5.4.0-6ubuntu1~16.04.12_amd64.deb \
          libllvm3.6v5_3.6.2-3ubuntu2_amd64.deb \
          libclang-common-3.6-dev_3.6.2-3ubuntu2_amd64.deb \
          libclang1-3.6_3.6.2-3ubuntu2_amd64.deb \
          gcc-5-base_5.4.0-6ubuntu1~16.04.12_amd64.deb \
          clang-3.6_3.6.2-3ubuntu2_amd64.deb
      if: ${{ matrix.cxx == 'clang++-3.6' }}

    - name: Add repositories for newer GCC
      run: |
        sudo apt-add-repository ppa:ubuntu-toolchain-r/test
      if: ${{ matrix.cxx == 'g++-13' }}

    - name: Add Ubuntu mirrors
      run: |
        # GitHub Actions caching proxy is at times unreliable
        # see https://github.com/actions/runner-images/issues/7048.
        mirrors=/etc/apt/mirrors.txt
        printf 'http://azure.archive.ubuntu.com/ubuntu\tpriority:1\n' | \
          sudo tee $mirrors
        curl http://mirrors.ubuntu.com/mirrors.txt | sudo tee --append $mirrors
        sudo sed -i \
          "s~http://azure.archive.ubuntu.com/ubuntu/~mirror+file:$mirrors~" \
          /etc/apt/sources.list

    - name: Create build environment
      run: |
        sudo apt update
        ${{matrix.install}}
        sudo apt install locales-all
        cmake -E make_directory ${{runner.workspace}}/build

    - name: Configure
      working-directory: ${{runner.workspace}}/build
      env:
        CXX: ${{matrix.cxx}}
        CXXFLAGS: ${{matrix.cxxflags}}
      run: |
        cmake -DCMAKE_BUILD_TYPE=${{matrix.build_type}} \
              -DCMAKE_CXX_STANDARD=${{matrix.std}} \
              -DCMAKE_CXX_VISIBILITY_PRESET=hidden \
              -DCMAKE_VISIBILITY_INLINES_HIDDEN=ON \
              -DFMT_DOC=OFF -DFMT_PEDANTIC=ON -DFMT_WERROR=ON \
              ${{matrix.fuzz}} ${{matrix.shared}} $GITHUB_WORKSPACE

    - name: Build
      working-directory: ${{runner.workspace}}/build
      run: |
        threads=`nproc`
        cmake --build . --config ${{matrix.build_type}} --parallel $threads

    - name: Test
      working-directory: ${{runner.workspace}}/build
      run: ctest -C ${{matrix.build_type}}
      env:
        CTEST_OUTPUT_ON_FAILURE: True