Skip to content

Commit

Permalink
Debug azure auth
Browse files Browse the repository at this point in the history
  • Loading branch information
nalinigans committed Sep 24, 2024
1 parent 6c8570d commit be808ea
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/scripts/install_prereqs.sh
Original file line number Diff line number Diff line change
Expand Up @@ -206,15 +206,15 @@ if [[ $1 == "release" ]]; then
echo "DYLD_LIBRARY_PATH=${DYLD_LIBRARY_PATH}"
echo "LD_LIBRARY_PATH=${LD_LIBRARY_PATH}"
# For Debugging
git clone https://github.com/GenomicsDB/GenomicsDB.git -b develop $NATIVE_BUILD_DIR
git clone https://github.com/GenomicsDB/GenomicsDB.git -b ng_debug_09232024 $NATIVE_BUILD_DIR
pushd $NATIVE_BUILD_DIR
mkdir build &&
pushd build &&
if [[ ! -z $OSX_ARCH ]]; then
echo "OSX_ARCH=$OSX_ARCH"
CMAKE_ARCH_ARG="-DCMAKE_OSX_ARCHITECTURES=${OSX_ARCH}"
fi
cmake .. $CMAKE_ARCH_ARG -DBUILD_NANOARROW=1 -DPROTOBUF_ROOT_DIR=./protobuf -DGCSSDK_ROOT_DIR=./gcssdk -DAWSSDK_ROOT_DIR=./awssdk -DCMAKE_INSTALL_PREFIX=$INSTALL_PREFIX -DCMAKE_PREFIX_PATH=$INSTALL_PREFIX -DBUILD_EXAMPLES=False -DDISABLE_MPI=True -DDISABLE_OPENMP=True -DDISABLE_TOOLS=True -DDISABLE_EXAMPLES=True -DDISABLE_TESTING=True -DOPENSSL_USE_STATIC_LIBS=True &&
cmake .. $CMAKE_ARCH_ARG -DCMAKE_BUILD_TYPE=Debug -DBUILD_NANOARROW=1 -DPROTOBUF_ROOT_DIR=./protobuf -DGCSSDK_ROOT_DIR=./gcssdk -DAWSSDK_ROOT_DIR=./awssdk -DCMAKE_INSTALL_PREFIX=$INSTALL_PREFIX -DCMAKE_PREFIX_PATH=$INSTALL_PREFIX -DBUILD_EXAMPLES=False -DDISABLE_MPI=True -DDISABLE_OPENMP=True -DDISABLE_TOOLS=True -DDISABLE_EXAMPLES=True -DDISABLE_TESTING=True -DOPENSSL_USE_STATIC_LIBS=True &&
make -j4 || rebuild && $SUDO make install &&
popd && popd
fi
2 changes: 1 addition & 1 deletion .github/workflows/basic.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ on:
env:
GENOMICSDB_BUILD_DIR: ${{github.workspace}}
GENOMICSDB_HOME: ${{github.workspace}}/install
GENOMICSDB_BRANCH: develop
GENOMICSDB_BRANCH: ng_debug_09232024

jobs:
native-build:
Expand Down

0 comments on commit be808ea

Please sign in to comment.