We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fed4b00 commit a5e7956Copy full SHA for a5e7956
.github/workflows/single_platform.yml
@@ -15,6 +15,10 @@ jobs:
15
container:
16
image: ubuntu:24.04
17
steps:
18
+ - name: Install Git
19
+ run: |
20
+ apt update
21
+ apt install -y git
22
- name: Checkout
23
uses: actions/checkout@v4
24
with:
@@ -45,7 +49,6 @@ jobs:
45
49
apt-get install -y \
46
50
build-essential \
47
51
cmake \
48
- git \
52
curl \
53
libssl-dev \
54
python3-dev \
@@ -89,8 +92,8 @@ jobs:
89
92
./b2 install --prefix=$GITHUB_WORKSPACE/boost_libs
90
93
echo "BOOST_ROOT=$GITHUB_WORKSPACE/boost_libs" >> $GITHUB_ENV
91
94
- - name: Git Submodule Update
- run: git submodule update --force --recursive --init --remote
95
+ # - name: Git Submodule Update
96
+ # run: git submodule update --force --recursive --init --remote
97
98
- name: Configure CMake DBG
99
run: cmake --preset configure_dbg
0 commit comments