summaryrefslogtreecommitdiffstats
path: root/.github/workflows/codeql.yml
blob: afdb864a74f83f46568926de90909a6239723baa (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
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
name: "CodeQL"

on:
  push:
    branches: [ "master" ]
  pull_request:
    branches: [ "master" ]
  schedule:
    - cron: '31 12 * * 1'

jobs:
  analyze:
    name: Analyze (c-cpp)
    runs-on: ubuntu-latest
    timeout-minutes: 360
    permissions:
      security-events: write

    steps:
      - name: Install Dependencies
        run: |
          sudo apt update && sudo apt install cmake make gcc pkg-config libjson-c-dev linux-headers-generic lua5.1 liblua5.1-0-dev

      - name: Install libubox
        run: |
          git clone	--depth=1 https://git.openwrt.org/project/libubox.git

          cd libubox
          cmake -DBUILD_EXAMPLES=OFF
          make
          sudo make install

      - name: Install libubus
        run: |
          git clone	--depth=1 https://git.openwrt.org/project/ubus.git

          cd ubus
          cmake -DBUILD_EXAMPLES=OFF
          make
          sudo make install

      - name: Install libuci
        run: |
          git clone	--depth=1 https://git.openwrt.org/project/uci.git

          cd uci
          cmake .
          make
          sudo make install

      - name: Install libudebug
        run: |
          git clone	--depth=1 https://github.com/jow-/ucode

          cd ucode
          cmake .
          make
          sudo make install

      - name: Install libudebug
        run: |
          git clone	--depth=1 https://git.openwrt.org/project/udebug.git

          cd udebug
          cmake .
          make
          sudo make install

      - name: Checkout repository
        uses: actions/checkout@v4

      # Initializes the CodeQL tools for scanning.
      - name: Initialize CodeQL
        uses: github/codeql-action/init@v3
        with:
          languages: c-cpp
          queries: security-and-quality

      - name: Install ubox
        run: |
          cmake .
          make
          sudo make install

      - name: Perform CodeQL Analysis
        uses: github/codeql-action/analyze@v3
        with:
          category: "/language:c-cpp"