File: macos.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 (58 lines) | stat: -rw-r--r-- 1,668 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
name: macos

on: [push, pull_request]

permissions:
  contents: read

jobs:
  build:
    strategy:
      matrix:
        os: [macos-13, macos-14]
        build_type: [Debug, Release]
        std: [11, 17, 20]
        shared: [""]
        exclude:
          - { os: macos-13, std: 11 }
          - { os: macos-13, std: 17 }
        include:
          - os: macos-14
            std: 23
            build_type: Release
            shared: -DBUILD_SHARED_LIBS=ON

    runs-on: '${{ matrix.os }}'

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

    - name: Set timezone
      run: sudo systemsetup -settimezone 'Europe/Minsk'

    - name: Select Xcode 14.3 (macOS 13)
      run: sudo xcode-select -s "/Applications/Xcode_14.3.app"
      if: ${{ matrix.os == 'macos-13' }}

    - name: Create Build Environment
      run: cmake -E make_directory ${{runner.workspace}}/build

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

    - name: Build
      working-directory: ${{runner.workspace}}/build
      run: |
        threads=`sysctl -n hw.logicalcpu`
        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