forked from OSGeo-jp/QGIS
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' of https://github.com/qgis/QGIS
- Loading branch information
Showing
4,007 changed files
with
996,168 additions
and
530,805 deletions.
The diff you're trying to view is too large. We only load the first 3000 changed files.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
ARG DISTRO_VERSION=36 | ||
ARG DISTRO_VERSION=38 | ||
|
||
FROM fedora:${DISTRO_VERSION} as single | ||
MAINTAINER Matthias Kuhn <[email protected]> | ||
|
@@ -9,6 +9,7 @@ RUN dnf -y --refresh install \ | |
clang \ | ||
clazy \ | ||
curl \ | ||
draco-devel \ | ||
exiv2-devel \ | ||
expat-devel \ | ||
fcgi-devel \ | ||
|
@@ -36,6 +37,7 @@ RUN dnf -y --refresh install \ | |
protobuf-lite-devel \ | ||
python3-devel \ | ||
python3-termcolor \ | ||
qca-qt6-devel \ | ||
qt6-qt3d-devel \ | ||
qt6-qtbase-devel \ | ||
qt6-qtbase-private-devel \ | ||
|
@@ -47,6 +49,9 @@ RUN dnf -y --refresh install \ | |
qt6-qtdeclarative-devel \ | ||
qt6-qt5compat-devel \ | ||
qt6-qtmultimedia-devel \ | ||
qtkeychain-qt6-devel \ | ||
qwt-qt6-devel \ | ||
qscintilla-qt6-devel \ | ||
spatialindex-devel \ | ||
sqlite-devel \ | ||
unzip \ | ||
|
@@ -65,42 +70,6 @@ RUN dnf -y --refresh install \ | |
patch \ | ||
dos2unix | ||
|
||
RUN cd /usr/src \ | ||
&& wget https://github.com/KDE/qca/archive/refs/heads/master.zip \ | ||
&& unzip master.zip \ | ||
&& rm master.zip \ | ||
&& mkdir build \ | ||
&& cd build \ | ||
&& cmake -DQT6=ON -DBUILD_TESTS=OFF -GNinja -DCMAKE_INSTALL_PREFIX=/usr/local ../qca-master \ | ||
&& ninja install | ||
|
||
RUN cd /usr/src \ | ||
&& wget https://github.com/frankosterfeld/qtkeychain/archive/841f31c7ca177e45647fd705200d7fcbeee056e5/master.zip \ | ||
&& unzip master.zip \ | ||
&& rm master.zip \ | ||
&& cd qtkeychain-841f31c7ca177e45647fd705200d7fcbeee056e5 \ | ||
&& cmake -DBUILD_WITH_QT6=ON -DBUILD_TRANSLATIONS=OFF -DCMAKE_INSTALL_PREFIX=/usr/local -GNinja \ | ||
&& ninja install | ||
|
||
RUN cd /usr/src \ | ||
&& wget https://sourceforge.net/projects/qwt/files/qwt/6.2.0/qwt-6.2.0.zip/download \ | ||
&& unzip download \ | ||
&& cd qwt-6.2.0 \ | ||
&& dos2unix qwtconfig.pri \ | ||
&& printf '140c140\n< QWT_CONFIG += QwtExamples\n---\n> #QWT_CONFIG += QwtExamples\n151c151\n< QWT_CONFIG += QwtPlayground\n---\n> #QWT_CONFIG += QwtPlayground\n158c158\n< QWT_CONFIG += QwtTests\n---\n> #QWT_CONFIG += QwtTests\n' | patch qwtconfig.pri \ | ||
&& qmake6 qwt.pro \ | ||
&& make -j4 \ | ||
&& make install | ||
|
||
|
||
RUN cd /usr/src \ | ||
&& wget https://www.riverbankcomputing.com/static/Downloads/QScintilla/2.13.3/QScintilla_src-2.13.3.zip \ | ||
&& unzip QScintilla_src-2.13.3.zip \ | ||
&& rm QScintilla_src-2.13.3.zip \ | ||
&& cd QScintilla_src-2.13.3 \ | ||
&& qmake6 src/qscintilla.pro \ | ||
&& make -j4 \ | ||
&& make install | ||
|
||
# Oracle : client side | ||
RUN curl https://download.oracle.com/otn_software/linux/instantclient/199000/instantclient-basic-linux.x64-19.9.0.0.0dbru.zip > instantclient-basic-linux.x64-19.9.0.0.0dbru.zip | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -34,7 +34,7 @@ jobs: | |
if [[ "${GITHUB_REF}" =~ ^refs/tags ]]; then | ||
echo "matrix={\"branch\":[\"${GITHUB_REF##*/}\"]}" >> $GITHUB_OUTPUT | ||
else | ||
echo "matrix={\"branch\":[\"master\", \"release-3_30\", \"release-3_28\"]}" >> $GITHUB_OUTPUT | ||
echo "matrix={\"branch\":[\"master\", \"release-3_34\", \"release-3_28\"]}" >> $GITHUB_OUTPUT | ||
fi | ||
build-docker: | ||
|
@@ -55,6 +55,14 @@ jobs: | |
matrix: ${{ fromJSON( needs.define-strategy.outputs.matrix ) }} | ||
|
||
steps: | ||
- name: Free Disk Space (Ubuntu) | ||
uses: jlumbroso/free-disk-space@main | ||
with: | ||
tool-cache: true | ||
large-packages: true | ||
docker-images: false | ||
swap-storage: true | ||
|
||
- name: Free additional space | ||
run: | | ||
df -h | ||
|
@@ -70,7 +78,7 @@ jobs: | |
- name: Cache | ||
id: cache | ||
uses: actions/[email protected].1 | ||
uses: actions/[email protected].2 | ||
with: | ||
path: ~/.ccache | ||
key: docker-build-${{ matrix.branch }}-${{ github.sha }} | ||
|
@@ -79,7 +87,7 @@ jobs: | |
docker-build-master- | ||
- name: checkout ${{ matrix.branch }} | ||
uses: actions/checkout@v3 | ||
uses: actions/checkout@v4 | ||
with: | ||
ref: ${{ matrix.branch }} | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -19,7 +19,7 @@ jobs: | |
python-version: 3.7 | ||
architecture: x64 | ||
- name: Checkout | ||
uses: actions/checkout@v3 | ||
uses: actions/checkout@v4 | ||
- name: Run flake8 | ||
uses: julianwachholz/[email protected] | ||
with: | ||
|
Oops, something went wrong.