Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 5 additions & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,8 @@ cache:
- ./.cache/sonar/

addons:
sonarcloud: true
sonarcloud:
organization: "opendap"
apt:
packages:
- uuid-dev
Expand All @@ -54,7 +55,8 @@ env:
# Should the BES build with GDAL? This is here to round up build errors. Set this
# to the 'configure' script option to use (--with-gdal) or not use (--without-gdal).
# jhrg 12/2/25
- GDAL_OPTION=--without-gdal
# Turn this off - build and test GDAL-related modules again. jhrg 2/4/26
- GDAL_OPTION=--with-gdal
# NB: This value of $prefix must be shared between the hyrax-deps, libdap and bes builds.
- prefix=$HOME/install
- PATH=$prefix/bin:$prefix/deps/bin:$PATH
Expand Down Expand Up @@ -157,7 +159,7 @@ jobs:
script:
- export BES_BUILD=distcheck
- autoreconf --force --install --verbose
- ./configure --disable-dependency-tracking --prefix=$prefix --with-dependencies=$prefix/deps $GDAL_OPTION--enable-developer
- ./configure --disable-dependency-tracking --prefix=$prefix --with-dependencies=$prefix/deps $GDAL_OPTION --enable-developer
- make distcheck -j16 GZIP_ENV=--fast

- stage: build-and-test
Expand Down
11 changes: 9 additions & 2 deletions .vscode/jhrg/settings.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
// For Hyrax, prefix and PATH need to be set. jhrg 3/11/26
"prefix": "/Users/jimg/src/opendap/hyrax_git/build",
"prefix": "/Users/jimg/src/opendap/hyrax/build",
"PATH": "${config:prefix}/bin:${config:prefix}/deps/bin:${env:PATH}",
// C/C++ extensionsettings. jhrg 3/11/26
"C_Cpp.default.configurationProvider": "ms-vscode.makefile-tools",
Expand Down Expand Up @@ -44,5 +44,12 @@
"terminal.integrated.env.linux": {
"prefix": "${config:prefix}",
"PATH": "${config:PATH}"
}
},
"cSpell.words": [
"autotest",
"LIBDAP",
"opendap",
"rockylinux",
"sonarcloud"
]
}
Loading