Skip to content

Commit 6b41712

Browse files
Update codeql.yml
Signed-off-by: Miles Price <[email protected]>
1 parent 19a432a commit 6b41712

File tree

1 file changed

+6
-5
lines changed

1 file changed

+6
-5
lines changed

.github/workflows/codeql.yml

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,6 @@ on:
88
schedule:
99
- cron: '28 22 * * 1'
1010

11-
env:
12-
deploy_docs_site: false
13-
1411
jobs:
1512
analyze:
1613
name: Analyze
@@ -38,7 +35,11 @@ jobs:
3835
run: |
3936
sudo apt update -y && sudo apt install -y --no-install-recommends \
4037
git git-lfs gcc-11 g++-11 ninja-build ccache libgtest-dev libgmock-dev \
41-
shellcheck curl doxygen python3 python3-pip python3-dev python3-distutils cmake
38+
shellcheck curl doxygen python3 python3-pip python3-dev python3-distutils \
39+
&& curl -L https://cmake.org/files/v3.20/cmake-3.20.1-linux-x86_64.tar.gz --output /tmp/cmake-3.20.1.tar.gz \
40+
&& tar -xzf /tmp/cmake-3.20.1.tar.gz -C /tmp/ && sudo cp -r /tmp/cmake-3.20.1-linux-x86_64/bin/ /usr/local/ \
41+
&& sudo cp -r /tmp/cmake-3.20.1-linux-x86_64/share/ /usr/local/ && sudo cp -r /tmp/cmake-3.20.1-linux-x86_64/doc/ /usr/local/ \
42+
&& rm -rf /tmp/cmake-3.20.1*
4243
4344
- if: matrix.language == 'c-cpp'
4445
name: Install Python Dependencies
@@ -98,7 +99,7 @@ jobs:
9899
- if: matrix.language == 'c-cpp' && github.event_name == 'push'
99100
name: Create .nojekyll file
100101
run: touch build/docs/sphinx/.nojekyll
101-
102+
102103
- if: matrix.language == 'c-cpp' && github.event_name == 'push'
103104
name: Deploy to GitHub Pages
104105
uses: JamesIves/github-pages-deploy-action@v4

0 commit comments

Comments
 (0)