Skip to content

Commit

Permalink
Fix the half done merge that went in for clang (#574)
Browse files Browse the repository at this point in the history
* Remove unneeded argument from ci_cross_build

* Corrected cross manifest
  • Loading branch information
borrrden authored Sep 24, 2024
1 parent 0190bba commit 75e1221
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 23 deletions.
1 change: 0 additions & 1 deletion jenkins/ci_cross_build.py
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,6 @@ def check_sysroot(name: str):
parser.add_argument('edition', type=str, choices=['enterprise', 'community'], help='The edition of the product to build')
parser.add_argument('build_os', type=str, help="The OS to compile for")
parser.add_argument('target_osname', type=str, help="OS name to use in deliverable .tar.gz files")
parser.add_argument('strip_prefix', type=str, help='The prefix to use on the binary for stripping the final product')
parser.add_argument('toolchain', type=str, help='The CMake toolchain file to use for building')
args = parser.parse_args()

Expand Down
28 changes: 6 additions & 22 deletions jenkins/cross_manifest.json
Original file line number Diff line number Diff line change
@@ -1,30 +1,14 @@
{
"raspbian9": {
"toolchain": "http://downloads.build.couchbase.com/mobile/toolchains/cross-gcc-9.3.0-pi_2-3.tar.gz",
"sysroot": "debian-stretch-armhf.tar.gz"
},
"debian9-x86_64": {
"toolchain": "",
"sysroot": "debian-stretch-x64.tar.gz"
},
"raspios10-armhf": {
"toolchain": "https://sourceforge.net/projects/raspberry-pi-cross-compilers/files/Raspberry%20Pi%20GCC%20Cross-Compiler%20Toolchains/Buster/GCC%208.3.0/Raspberry%20Pi%202%2C%203/cross-gcc-8.3.0-pi_2-3.tar.gz/download",
"sysroot": "debian-buster-armhf.tar.gz"
},
"raspios10-arm64": {
"toolchain": "https://sourceforge.net/projects/raspberry-pi-cross-compilers/files/Bonus%20Raspberry%20Pi%20GCC%2064-Bit%20Toolchains/Raspberry%20Pi%20GCC%2064-Bit%20Cross-Compiler%20Toolchains/Buster/GCC%208.3.0/cross-gcc-8.3.0-pi_64.tar.gz/download",
"sysroot": "debian-buster-arm64.tar.gz"
},
"ubuntu20.04-armhf": {
"debian11-armhf": {
"toolchain": "",
"sysroot": "ubuntu-focal-armhf.tar.gz"
"sysroot": "debian-bookworm-armhf.tar.gz"
},
"ubuntu20.04-arm64": {
"debian11-arm64": {
"toolchain": "",
"sysroot": "ubuntu-focal-arm64.tar.gz"
"sysroot": "debian-bookworm-arm64.tar.gz"
},
"ubuntu20.04-x86_64": {
"debian11-x86_64": {
"toolchain": "",
"sysroot": "ubuntu-focal-x64.tar.gz"
"sysroot": "debian-bookworm-x64.tar.gz"
}
}

0 comments on commit 75e1221

Please sign in to comment.