mirror of
https://github.com/RetroShare/RetroShare.git
synced 2026-09-12 19:50:17 +05:00
Fix workflows by saurabh
This commit is contained in:
parent
c2aa157104
commit
1070f39ad0
5
.github/workflows/ci-mingw64-Qt6.yml
vendored
5
.github/workflows/ci-mingw64-Qt6.yml
vendored
@ -65,6 +65,11 @@ jobs:
|
||||
git submodule update --init --remote libbitdht/ libretroshare/ retroshare-webui/
|
||||
git submodule update --init supportlibs/librnp supportlibs/rapidjson supportlibs/restbed
|
||||
|
||||
- name: Workaround librnp strlen build regression
|
||||
run: |
|
||||
FILE="supportlibs/librnp/src/lib/crypto/mem.cpp"
|
||||
grep -q '#include <cstring>' "$FILE" || sed -i '/#include <cstdio>/a #include <cstring>' "$FILE"
|
||||
|
||||
- name: Build
|
||||
run: |
|
||||
qmake6 . -r -spec win32-g++ "CONFIG+=release" "CONFIG+=rs_autologin" "CONFIG+=no_rs_sam3" "CONFIG+=no_rs_sam3_libsam3"
|
||||
|
||||
5
.github/workflows/ci-mingw64.yml
vendored
5
.github/workflows/ci-mingw64.yml
vendored
@ -64,6 +64,11 @@ jobs:
|
||||
git submodule update --init --remote libbitdht/ libretroshare/ retroshare-webui/
|
||||
git submodule update --init supportlibs/librnp supportlibs/rapidjson supportlibs/restbed
|
||||
|
||||
- name: Workaround librnp strlen build regression
|
||||
run: |
|
||||
FILE="supportlibs/librnp/src/lib/crypto/mem.cpp"
|
||||
grep -q '#include <cstring>' "$FILE" || sed -i '/#include <cstdio>/a #include <cstring>' "$FILE"
|
||||
|
||||
- name: CI-Build
|
||||
run: |
|
||||
qmake-qt5.exe . -r -spec win32-g++ "CONFIG+=release" "CONFIG+=rs_autologin" "CONFIG+=no_rs_sam3" "CONFIG+=no_rs_sam3_libsam3"
|
||||
|
||||
5
.github/workflows/ci-ucrt64.yml
vendored
5
.github/workflows/ci-ucrt64.yml
vendored
@ -64,6 +64,11 @@ jobs:
|
||||
git submodule update --init --remote libbitdht/ libretroshare/ retroshare-webui/
|
||||
git submodule update --init supportlibs/librnp supportlibs/rapidjson supportlibs/restbed
|
||||
|
||||
- name: Workaround librnp strlen build regression
|
||||
run: |
|
||||
FILE="supportlibs/librnp/src/lib/crypto/mem.cpp"
|
||||
grep -q '#include <cstring>' "$FILE" || sed -i '/#include <cstdio>/a #include <cstring>' "$FILE"
|
||||
|
||||
- name: CI-Build
|
||||
run: |
|
||||
qmake-qt5.exe . -r -spec win32-g++ "CONFIG+=release" "CONFIG+=rs_autologin" "CONFIG+=no_rs_sam3" "CONFIG+=no_rs_sam3_libsam3"
|
||||
|
||||
2
.github/workflows/ubuntu-qt5_c-cpp.yml
vendored
2
.github/workflows/ubuntu-qt5_c-cpp.yml
vendored
@ -22,7 +22,7 @@ jobs:
|
||||
- name: run apt update
|
||||
run: sudo apt-get update
|
||||
- name: apt install
|
||||
run: sudo apt-get install g++ cmake qt5-qmake qtmultimedia5-dev libqt5x11extras5-dev libasio-dev libbz2-dev libjson-c-dev libssl-dev libsqlcipher-dev libupnp-dev libxss-dev rapidjson-dev libbotan-2-dev doxygen libsecret-1-dev libxml2-dev libxslt1-dev libcurl4-openssl-dev
|
||||
run: sudo apt-get install g++ cmake qt5-qmake qtmultimedia5-dev libqt5x11extras5-dev libasio-dev libbz2-dev libjson-c-dev libssl-dev libsqlcipher-dev libupnp-dev libxss-dev rapidjson-dev libbotan-2-dev doxygen libsecret-1-dev libxml2-dev libxslt1-dev libcurl4-openssl-dev libavcodec-dev libavutil-dev libspeex-dev libspeexdsp-dev
|
||||
- name: print working directory
|
||||
run: pwd && ls -la
|
||||
- name: qmake
|
||||
|
||||
Loading…
Reference in New Issue
Block a user