File tree Expand file tree Collapse file tree 1 file changed +20
-0
lines changed Expand file tree Collapse file tree 1 file changed +20
-0
lines changed Original file line number Diff line number Diff line change 1717 go : " 1.18"
1818
1919jobs :
20+ # Quick build using nightly libtiledb installed as conda binary
21+ # https://anaconda.org/tiledb/tiledb/files?channel=nightlies
22+ # https://github.com/TileDB-Inc/conda-forge-nightly-controller
2023 ubuntu :
2124 runs-on : ubuntu-20.04
2225 defaults :
4851
4952 go test -v ./...
5053
54+ # Longer build because libtiledb is built from source
55+ #
56+ # Couldn't build against the conda binary on macOS. When I set
57+ # `DYLD_LIBRARY_PATH=$CONDA_PREFIX/lib`, then it failed because it found the
58+ # system libarchive instead of the conda-installed one (even when I explicitly
59+ # installed it from conda-forge). Error message below:
60+ #
61+ # dyld: Symbol not found: _iconv
62+ # Referenced from: /usr/lib/libarchive.2.dylib
63+ # Expected in: /Users/runner/micromamba-root/envs/nightly/lib/libiconv.2.dylib
64+ # in /usr/lib/libarchive.2.dylib
5165 macos :
5266 runs-on : macos-11
5367 needs : ubuntu
7286 - name : Test TileDB-Go
7387 run : go test -v ./...
7488
89+ # Report if either the Ubuntu or macOS builds fail
90+ #
91+ # If there is an existing "nightly-failure" Issue open, then it comments
92+ # instead of creating a new one
93+ #
94+ # Only reports a failure for scheduled builds on the TileDB-Inc repo
7595 issue :
7696 permissions :
7797 issues : write
You can’t perform that action at this time.
0 commit comments