File tree 2 files changed +10
-6
lines changed
devops/docker/azurelinux-3-amd64
2 files changed +10
-6
lines changed Original file line number Diff line number Diff line change 5
5
paths :
6
6
- devops/docker/**/Dockerfile
7
7
push :
8
- branches :
9
- - dev
8
+ # branches:
9
+ # - dev
10
10
paths :
11
11
- devops/docker/**/Dockerfile
12
12
workflow_dispatch :
@@ -113,6 +113,7 @@ jobs:
113
113
with :
114
114
context : ${{ steps.image.outputs.path }}
115
115
# Only push the image when a pull request is merged to dev
116
- push : ${{ github.event_name == 'push' && github.ref == 'refs/heads/dev' }}
116
+ # push: ${{ github.event_name == 'push' && github.ref == 'refs/heads/dev' }}
117
+ push : true
117
118
tags : ${{ steps.meta.outputs.tags }}
118
119
labels : ${{ steps.meta.outputs.labels }}
Original file line number Diff line number Diff line change @@ -10,8 +10,6 @@ RUN tdnf install -y \
10
10
file \
11
11
gcovr \
12
12
git \
13
- gmock-devel \
14
- gtest-devel \
15
13
jq \
16
14
ninja-build \
17
15
openssl-devel \
@@ -22,7 +20,12 @@ RUN tdnf install -y \
22
20
tree \
23
21
unzip \
24
22
util-linux \
23
+ uuid-devel \
25
24
wget \
26
25
zip && \
27
26
tdnf upgrade -y && \
28
- tdnf clean all
27
+ tdnf clean all
28
+
29
+ # GTest
30
+ RUN git clone https://github.com/google/googletest --recursive -b release-1.12.0
31
+ RUN cd googletest && cmake . && cmake --build . --parallel --target install && rm -rf /git/googletest
You can’t perform that action at this time.
0 commit comments