-
Notifications
You must be signed in to change notification settings - Fork 481
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
28 changed files
with
2,440 additions
and
65 deletions.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,63 @@ | ||
name: linux-config | ||
description: configure linux | ||
|
||
runs: | ||
using: "composite" | ||
steps: | ||
- name: Cache dependencies | ||
uses: actions/cache@v3 | ||
with: | ||
path: deps/vcpkg/cache/linux | ||
key: linux-x64-${{ hashFiles('.github/workflows/linux-config/action.yml', 'deps/vcpkg/manifest/vcpkg.json') }} | ||
|
||
- name: Install dependencies | ||
shell: bash | ||
run: | | ||
# vcpkg | ||
# qt5-base | ||
# ffmpeg | ||
# ogre | ||
# libusb | ||
sudo apt install -y \ | ||
ninja-build \ | ||
\ | ||
'^libxcb.*-dev' \ | ||
libx11-xcb-dev \ | ||
libglu1-mesa-dev \ | ||
libxrender-dev \ | ||
libxi-dev \ | ||
libxkbcommon-dev \ | ||
libxkbcommon-x11-dev \ | ||
\ | ||
nasm \ | ||
\ | ||
libxaw7-dev \ | ||
libxrandr-dev \ | ||
\ | ||
libudev-dev \ | ||
autoconf | ||
- name: Clone vcpkg | ||
shell: bash | ||
run: | | ||
git clone https://github.com/microsoft/vcpkg/ | ||
- name: Configure Gazebo | ||
shell: bash | ||
run: | | ||
export VCPKG_BINARY_SOURCES="clear;files,$PWD/deps/vcpkg/cache/linux,readwrite;" | ||
cmake . -G Ninja -B build \ | ||
-DCMAKE_BUILD_TYPE=Release \ | ||
-DCMAKE_TOOLCHAIN_FILE=vcpkg/scripts/buildsystems/vcpkg.cmake \ | ||
-DVCPKG_MANIFEST_DIR=deps/vcpkg/manifest \ | ||
-DVCPKG_OVERLAY_TRIPLETS=deps/vcpkg/triplets \ | ||
-DVCPKG_OVERLAY_PORTS=deps/vcpkg/ports \ | ||
-DVCPKG_INSTALLED_DIR=$PWD/vcpkg/installed \ | ||
-DVCPKG_TARGET_TRIPLET=x64-linux-release \ | ||
-DVCPKG_HOST_TRIPLET=x64-linux-release \ | ||
-DVCPKG_INSTALL_OPTIONS=--clean-after-build \ | ||
-DUSE_EXTERNAL_TINYXML=ON \ | ||
-DUSE_EXTERNAL_TINYXML2=ON \ | ||
-DUSE_EXTERNAL_TINY_PROCESS_LIBRARY=ON \ | ||
-DGZ_PROTOBUF_USE_CMAKE_CONFIG=ON \ | ||
-DCMAKE_INSTALL_PREFIX=$PWD/vcpkg/installed/x64-linux-release |
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -0,0 +1,83 @@ | ||
name: 🐧 Linux | ||
on: | ||
push: | ||
branches: [ gazebo11 ] | ||
pull_request: | ||
branches: [ gazebo11 ] | ||
|
||
concurrency: | ||
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }} | ||
cancel-in-progress: true | ||
|
||
jobs: | ||
config: | ||
name: x64-config | ||
runs-on: ubuntu-latest | ||
strategy: | ||
fail-fast: false | ||
steps: | ||
- uses: actions/checkout@v3 | ||
|
||
- name: Config Gazebo | ||
uses: ./.github/workflows/linux-config/ | ||
|
||
- name: Prepare logs on failure | ||
if: failure() | ||
shell: bash | ||
run: | | ||
7z a -t7z -r -mx=9 logs.7z \ | ||
vcpkg/buildtrees/*.log | ||
- name: Upload logs on failure | ||
if: failure() | ||
uses: actions/upload-artifact@v3 | ||
with: | ||
name: linux_logs_x64_${{github.event.pull_request.head.sha}} | ||
path: logs.7z | ||
|
||
build: | ||
name: x64-build | ||
needs: config | ||
runs-on: ubuntu-latest | ||
strategy: | ||
fail-fast: false | ||
steps: | ||
- uses: actions/checkout@v3 | ||
|
||
- name: Config Gazebo | ||
uses: ./.github/workflows/linux-config/ | ||
|
||
- name: Build Gazebo | ||
shell: bash | ||
run: | | ||
export proc=$(nproc) | ||
echo proc=$proc | ||
cmake --build build --config Release -j $proc | ||
- name: Install Gazebo | ||
shell: bash | ||
run: | | ||
cmake --install build --config Release | ||
- name: Tests suite compilation | ||
shell: bash | ||
run: | | ||
echo compile and run tests here | ||
- name: Prepare logs on failure | ||
if: failure() | ||
shell: bash | ||
run: | | ||
7z a -t7z -r -mx=9 logs.7z \ | ||
vcpkg/buildtrees/*.log \ | ||
build/.ninja_log \ | ||
build/build.ninja \ | ||
build/install_manifest.txt \ | ||
build/vcpkg-manifest-install.log | ||
- name: Upload logs on failure | ||
if: failure() | ||
uses: actions/upload-artifact@v3 | ||
with: | ||
name: linux_logs_x64_${{github.event.pull_request.head.sha}} | ||
path: logs.7z |
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 |
---|---|---|
|
@@ -3,6 +3,7 @@ test/plugins/rest-web/node_modules | |
build | ||
build_* | ||
build-* | ||
vcpkg | ||
Ogre.log | ||
deps/vcpkg/cache | ||
.DS_Store | ||
|
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 |
---|---|---|
@@ -0,0 +1,25 @@ | ||
diff --git a/configure b/configure | ||
index 34c2adb..1c8008a 100755 | ||
--- a/configure | ||
+++ b/configure | ||
@@ -5352,15 +5352,17 @@ case $target_os in | ||
;; | ||
win32|win64) | ||
disable symver | ||
- if enabled shared; then | ||
+# if enabled shared; then | ||
# Link to the import library instead of the normal static library | ||
# for shared libs. | ||
LD_LIB='%.lib' | ||
# Cannot build both shared and static libs with MSVC or icl. | ||
- disable static | ||
- fi | ||
+# disable static | ||
+# fi | ||
enabled x86_32 && check_ldflags -LARGEADDRESSAWARE | ||
shlibdir_default="$bindir_default" | ||
+ LIBPREF="" | ||
+ LIBSUF=".lib" | ||
SLIBPREF="" | ||
SLIBSUF=".dll" | ||
SLIBNAME_WITH_VERSION='$(SLIBPREF)$(FULLNAME)-$(LIBVERSION)$(SLIBSUF)' |
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 |
---|---|---|
@@ -0,0 +1,11 @@ | ||
diff --git a/configure b/configure | ||
--- a/configure | ||
+++ b/configure | ||
@@ -6162,6 +6162,7 @@ EOF | ||
test -n "$extern_prefix" && append X86ASMFLAGS "-DPREFIX" | ||
case "$objformat" in | ||
elf*) enabled debug && append X86ASMFLAGS $x86asm_debug ;; | ||
+ win*) enabled debug && append X86ASMFLAGS "-g" ;; | ||
esac | ||
|
||
enabled avx512 && check_x86asm avx512_external "vmovdqa32 [eax]{k1}{z}, zmm0" |
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 |
---|---|---|
@@ -0,0 +1,13 @@ | ||
diff --git a/fftools/cmdutils.c b/fftools/cmdutils.c | ||
--- a/fftools/cmdutils.c | ||
+++ b/fftools/cmdutils.c | ||
@@ -51,6 +51,8 @@ | ||
#include "fopen_utf8.h" | ||
#include "opt_common.h" | ||
#ifdef _WIN32 | ||
+#define _WIN32_WINNT 0x0502 | ||
+#define WIN32_LEAN_AND_MEAN | ||
#include <windows.h> | ||
#include "compat/w32dlfcn.h" | ||
#endif | ||
|
Oops, something went wrong.