This file contains hidden or 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
"quantitative": [ | |
[...], // Default quantitative scales removed for brevity | |
[ | |
"#fcfbfd", | |
"#efedf5", | |
"#dadaeb", | |
"#bcbddc", | |
"#9e9ac8", | |
"#807dba", | |
"#6a51a3", |
This file contains hidden or 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
"custom": [ | |
"#ea5545", | |
"#bdcf32", | |
"#b33dc6", | |
"#ef9b20", | |
"#87bc45", | |
"#f46a9b", | |
"#ace5c7", | |
"#ede15b", | |
"#836dc5", |
This file contains hidden or 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
[ | |
{ | |
"customStyles": { | |
"colors": { | |
"solid": [ | |
"#ea5545", | |
"#f46a9b", | |
"#ef9b20", | |
"#ede15b", | |
"#bdcf32", |
This file contains hidden or 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
[ | |
{ | |
"customStyles": { | |
"colors": { | |
"solid": [ | |
"#ea5545", | |
"#f46a9b", | |
"#ef9b20", | |
"#ede15b", | |
"#bdcf32", |
This file contains hidden or 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
[ | |
{ | |
"customStyles": { | |
"colors": { | |
"solid": [ | |
"#ea5545", | |
"#f46a9b", | |
"#ef9b20", | |
"#ede15b", | |
"#bdcf32", |
This file contains hidden or 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
24: [ OK ] UDFCompilerTest.UdfQuery (1658 ms) | |
24: [----------] 3 tests from UDFCompilerTest (2012 ms total) | |
24: | |
24: [----------] Global test environment tear-down | |
24: [==========] 3 tests from 1 test case ran. (3412 ms total) | |
24: [ PASSED ] 3 tests. | |
18/18 Test #24: UdfTest .......................... Passed 3.56 sec | |
100% tests passed, 0 tests failed out of 18 |
This file contains hidden or 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
# run image interactively | |
docker run -it centos bash | |
# update image | |
yum update -y && yum install git sudo -y | |
# clone repo and install build dependencies | |
git clone https://github.com/omnisci/omniscidb.git | |
bash /omniscidb/scripts/mapd-deps-prebuilt.sh |
This file contains hidden or 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
# run image interactively | |
docker run -it --runtime=nvidia --rm nvidia/cuda:10.1-devel-ubuntu18.04 bash | |
# update image | |
apt update && apt upgrade -y | |
# sudo only needed because its used inside of dependency install script | |
# software-properties-common allows for add-apt-repository | |
# git needed for cloning mapd-core repo | |
apt install git sudo software-properties-common -y |
This file contains hidden or 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
20: [----------] Global test environment tear-down | |
20: [==========] 2 tests from 1 test case ran. (0 ms total) | |
20: [ PASSED ] 2 tests. | |
16/16 Test #20: DateTimeUtilsTest ................ Passed 0.01 sec | |
100% tests passed, 0 tests failed out of 16 | |
Label Time Summary: | |
sanity = 263.15 sec*proc (16 tests) |
This file contains hidden or 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
# run image interactively | |
docker run -it amd64/ubuntu:18.04 bash | |
# update image | |
apt update && apt upgrade -y | |
# sudo only needed because its used inside of dependency install script | |
# software-properties-common allows for add-apt-repository | |
# git needed for cloning mapd-core repo | |
apt install git sudo software-properties-common -y |