File tree Expand file tree Collapse file tree 2 files changed +7
-7
lines changed Expand file tree Collapse file tree 2 files changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -2,8 +2,8 @@ name: Build
2
2
3
3
on :
4
4
push :
5
- branches :
6
- - master
5
+ # branches:
6
+ # - master
7
7
pull_request :
8
8
9
9
defaults :
Original file line number Diff line number Diff line change @@ -4,8 +4,8 @@ RUN yum update -y
4
4
RUN yum groupinstall "Development Tools" -y
5
5
RUN yum install -y \
6
6
which \
7
- python3 \
8
- python3 -debug \
7
+ # python3 \
8
+ python -debug \
9
9
qt5-qtbase-* \
10
10
qt5-qttools* \
11
11
qt5-qtsvg \
@@ -24,10 +24,10 @@ COPY . work/
24
24
WORKDIR work
25
25
26
26
ARG QT_SELECT=qt5
27
- RUN uname -a; gcc --version | grep "gcc"; python3 --version; qmake-qt5 --version
27
+ RUN uname -a; gcc --version | grep "gcc"; python --version; qmake-qt5 --version
28
28
29
29
RUN qmake-qt5 -r PythonQt.pro \
30
- PYTHON_VERSION=$(python3 --version | cut -d " " -f 2 | cut -d "." -f1,2) \
31
- PYTHON_DIR=$(which python3 | xargs dirname | xargs dirname)
30
+ PYTHON_VERSION=$(python --version | cut -d " " -f 2 | cut -d "." -f1,2) \
31
+ PYTHON_DIR=$(which python | xargs dirname | xargs dirname)
32
32
33
33
CMD ["make"]
You can’t perform that action at this time.
0 commit comments