This commit is contained in:
parent
7026014a00
commit
eb3f0d793f
1 changed files with 14 additions and 14 deletions
|
@ -23,32 +23,32 @@ jobs:
|
||||||
uses: actions/checkout@v4
|
uses: actions/checkout@v4
|
||||||
- name: Cloning source
|
- name: Cloning source
|
||||||
run: |
|
run: |
|
||||||
git clone https://github.com/ONLYOFFICE/DocumentServer --recursive -b v$pkgver onlyoffice-document-server
|
git clone https://github.com/ONLYOFFICE/DocumentServer --recursive -b v$pkgver build
|
||||||
git clone https://github.com/ONLYOFFICE/build_tools.git -b v$pkgver.$buildno onlyoffice-document-server/build_tools
|
git clone https://github.com/ONLYOFFICE/build_tools.git -b v$pkgver.$buildno build/build_tools
|
||||||
git clone https://github.com/ONLYOFFICE/document-server-integration -b v$pkgver.$buildno onlyoffice-document-server/document-server-integration
|
git clone https://github.com/ONLYOFFICE/document-server-integration -b v$pkgver.$buildno build/document-server-integration
|
||||||
git clone https://github.com/ONLYOFFICE/document-templates -b v$pkgver.$buildno onlyoffice-document-server/document-templates
|
git clone https://github.com/ONLYOFFICE/document-templates -b v$pkgver.$buildno build/document-templates
|
||||||
git clone https://github.com/ONLYOFFICE/onlyoffice.github.io onlyoffice-document-server/onlyoffice.github.io
|
git clone https://github.com/ONLYOFFICE/onlyoffice.github.io build/onlyoffice.github.io
|
||||||
- name: Applying patches
|
- name: Applying patches
|
||||||
run: |
|
run: |
|
||||||
git -C onlyoffice-document-server/server apply -v --ignore-space-change --ignore-whitespace $GITHUB_WORKSPACE/server.patch
|
git -C build/server apply -v --ignore-space-change --ignore-whitespace $GITHUB_WORKSPACE/server.patch
|
||||||
git -C onlyoffice-document-server/web-apps apply -v --ignore-space-change --ignore-whitespace $GITHUB_WORKSPACE/web-apps.patch
|
git -C build/web-apps apply -v --ignore-space-change --ignore-whitespace $GITHUB_WORKSPACE/web-apps.patch
|
||||||
- name: Development setup
|
- name: Development setup
|
||||||
run: |
|
run: |
|
||||||
mkdir -p ./system_qt/gcc_64
|
mkdir -p build/build_tools/system_qt/gcc_64
|
||||||
ln -s /usr/lib/x86_64-linux-gnu ./system_qt/gcc_64/lib
|
ln -s /usr/lib/x86_64-linux-gnu build/build_tools/system_qt/gcc_64/lib
|
||||||
ln -s /usr/lib/x86_64-linux-gnu/qt5/bin ./system_qt/gcc_64/bin
|
ln -s /usr/lib/x86_64-linux-gnu/qt5/bin build/build_tools/system_qt/gcc_64/bin
|
||||||
ln -s /usr/lib/x86_64-linux-gnu/qt5/plugins ./system_qt/gcc_64/plugins
|
ln -s /usr/lib/x86_64-linux-gnu/qt5/plugins build/build_tools/system_qt/gcc_64/plugins
|
||||||
cd tools/linux
|
cd build/build_tools/tools/linux
|
||||||
python2 ./deps.py
|
python2 ./deps.py
|
||||||
- name: Onlyoffice server build
|
- name: Onlyoffice server build
|
||||||
run: |
|
run: |
|
||||||
cd onlyoffice-document-server/build_tools
|
cd build/build_tools
|
||||||
python2 ./configure.py --update 0 --module "server" --qt-dir $(pwd)/system_qt
|
python2 ./configure.py --update 0 --module "server" --qt-dir $(pwd)/system_qt
|
||||||
python2 ./make.py
|
python2 ./make.py
|
||||||
- name: Package upload
|
- name: Package upload
|
||||||
uses: forgejo/upload-artifact@v3
|
uses: forgejo/upload-artifact@v3
|
||||||
with:
|
with:
|
||||||
name: documentserver
|
name: documentserver
|
||||||
path: ./out/linux_64/onlyoffice/documentserver/*
|
path: build/build_tools/out/linux_64/onlyoffice/documentserver/*
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue