mirror of https://github.com/procxx/kepka.git
Fix path to compose file
This commit is contained in:
parent
fa4236e9ea
commit
126ed6e6e3
|
@ -378,30 +378,37 @@ jobs:
|
||||||
cd $LibrariesPath
|
cd $LibrariesPath
|
||||||
sudo cp -R openssl-cache/. /
|
sudo cp -R openssl-cache/. /
|
||||||
|
|
||||||
- name: Libxkbcommon.
|
|
||||||
run: |
|
|
||||||
cd $LibrariesPath
|
|
||||||
|
|
||||||
git clone -b xkbcommon-0.8.4 --depth=1 $GIT/xkbcommon/libxkbcommon.git
|
|
||||||
cd libxkbcommon
|
|
||||||
./autogen.sh
|
|
||||||
make -j$(nproc)
|
|
||||||
sudo make install
|
|
||||||
cd ..
|
|
||||||
rm -rf libxkbcommon
|
|
||||||
|
|
||||||
- name: Libwayland.
|
- name: Libwayland.
|
||||||
run: |
|
run: |
|
||||||
cd $LibrariesPath
|
cd $LibrariesPath
|
||||||
|
|
||||||
git clone -b 1.16 https://gitlab.freedesktop.org/wayland/wayland
|
git clone -b 1.16 https://gitlab.freedesktop.org/wayland/wayland
|
||||||
cd wayland
|
cd wayland
|
||||||
./autogen.sh --enable-static --disable-documentation --disable-dtd-validation
|
./autogen.sh \
|
||||||
|
--enable-static \
|
||||||
|
--disable-documentation \
|
||||||
|
--disable-dtd-validation
|
||||||
make -j$(nproc)
|
make -j$(nproc)
|
||||||
sudo make install
|
sudo make install
|
||||||
cd ..
|
cd ..
|
||||||
rm -rf wayland
|
rm -rf wayland
|
||||||
|
|
||||||
|
- name: Libxkbcommon.
|
||||||
|
run: |
|
||||||
|
cd $LibrariesPath
|
||||||
|
|
||||||
|
git clone -b xkbcommon-0.8.4 --depth=1 $GIT/xkbcommon/libxkbcommon.git
|
||||||
|
cd libxkbcommon
|
||||||
|
./autogen.sh \
|
||||||
|
--disable-docs \
|
||||||
|
--disable-wayland \
|
||||||
|
--with-xkb-config-root=/usr/share/X11/xkb \
|
||||||
|
--with-x-locale-root=/usr/share/X11/locale
|
||||||
|
make -j$(nproc)
|
||||||
|
sudo make install
|
||||||
|
cd ..
|
||||||
|
rm -rf libxkbcommon
|
||||||
|
|
||||||
- name: Qt 5.12.8 cache.
|
- name: Qt 5.12.8 cache.
|
||||||
id: cache-qt
|
id: cache-qt
|
||||||
uses: actions/cache@v1
|
uses: actions/cache@v1
|
||||||
|
|
|
@ -211,18 +211,25 @@ Go to ***BuildPath*** and run
|
||||||
sudo make install_sw
|
sudo make install_sw
|
||||||
cd ..
|
cd ..
|
||||||
|
|
||||||
git clone https://github.com/xkbcommon/libxkbcommon.git
|
git clone -b 1.16 https://gitlab.freedesktop.org/wayland/wayland
|
||||||
cd libxkbcommon
|
cd wayland
|
||||||
git checkout xkbcommon-0.8.4
|
./autogen.sh \
|
||||||
./autogen.sh
|
--enable-static \
|
||||||
make $MAKE_THREADS_CNT
|
--disable-documentation \
|
||||||
|
--disable-dtd-validation
|
||||||
|
make -j$(nproc)
|
||||||
sudo make install
|
sudo make install
|
||||||
cd ..
|
cd ..
|
||||||
|
|
||||||
git clone -b 1.16 https://gitlab.freedesktop.org/wayland/wayland
|
git clone https://github.com/xkbcommon/libxkbcommon.git
|
||||||
cd wayland
|
cd libxkbcommon
|
||||||
./autogen.sh --enable-static --disable-documentation --disable-dtd-validation
|
git checkout xkbcommon-0.8.4
|
||||||
make -j$(nproc)
|
./autogen.sh \
|
||||||
|
--disable-docs \
|
||||||
|
--disable-wayland \
|
||||||
|
--with-xkb-config-root=/usr/share/X11/xkb \
|
||||||
|
--with-x-locale-root=/usr/share/X11/locale
|
||||||
|
make $MAKE_THREADS_CNT
|
||||||
sudo make install
|
sudo make install
|
||||||
cd ..
|
cd ..
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue