File tree 1 file changed +6
-5
lines changed
1 file changed +6
-5
lines changed Original file line number Diff line number Diff line change 8
8
schedule :
9
9
- cron : ' 28 22 * * 1'
10
10
11
- env :
12
- deploy_docs_site : false
13
-
14
11
jobs :
15
12
analyze :
16
13
name : Analyze
38
35
run : |
39
36
sudo apt update -y && sudo apt install -y --no-install-recommends \
40
37
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*
42
43
43
44
- if : matrix.language == 'c-cpp'
44
45
name : Install Python Dependencies
98
99
- if : matrix.language == 'c-cpp' && github.event_name == 'push'
99
100
name : Create .nojekyll file
100
101
run : touch build/docs/sphinx/.nojekyll
101
-
102
+
102
103
- if : matrix.language == 'c-cpp' && github.event_name == 'push'
103
104
name : Deploy to GitHub Pages
104
105
uses : JamesIves/github-pages-deploy-action@v4
You can’t perform that action at this time.
0 commit comments