summaryrefslogtreecommitdiffstats
path: root/.github/workflows/macos.yml
blob: 7ea23317265f82d575dea6adfc9ce78bad72132a (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
name: Build MacOS

on: [push]

jobs:
  macos:
    name: Build & Test
    runs-on: macos-latest
    steps:
      - name: Checkout
        uses: actions/checkout@v3
      - name: Set up Python 3.8
        uses: actions/setup-python@v4
        with:
          python-version: 3.8
      - name: Install deps
        run: ./tools/macos-setup-brew.sh --install-optional --install-doc-deps --install-dmg-deps --install-test-deps
        env:
          HOMEBREW_NO_AUTO_UPDATE: 1
      - name: Mkdir
        run: mkdir build
      - name: Cmake
        working-directory: build
        run: cmake -GNinja ..
      - name: Build
        run: ninja
        working-directory: build
      - name: Build test-programs
        run: ninja test-programs
        working-directory: build
      - name: Run tests
        env:
          PYTEST_ADDOPTS: --skip-missing-programs=rawshark
        run: pytest
        working-directory: build
      - name: Build dmg
        run: ninja wireshark_dmg
        working-directory: build
      - name: Upload dmg packages
        uses: actions/upload-artifact@v3
        with:
          name: package
          path: build/run/*dmg