Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix typo in README.md #38

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Fix typo in README.md

d91470c
Select commit
Loading
Failed to load commit list.
Open

Fix typo in README.md #38

Fix typo in README.md
d91470c
Select commit
Loading
Failed to load commit list.
Travis CI / Travis CI - Pull Request required action Mar 11, 2024 in 34m 58s

Build Errored

The build errored. This is a change from the previous build, which passed.

Details

This is a pull request build.

It is running a build against the merge commit, after merging #38 Fix typo in README.md.
Any changes that have been made to the main branch before the build ran are also included.

Jobs and Stages

This build has four jobs, running in parallel.

Job Compiler Xcode OS State
278.1 gcc Linux passed
278.2 gcc Linux passed
278.3 gcc xcode12.5 macOS errored
278.4 gcc windows passed

Build Configuration

Build Option Setting
Language C
Operating System Linux (Xenial)
Compiler Version gcc
Build Configuration
{
  "language": "c",
  "os": [
    "linux"
  ],
  "dist": "xenial",
  "jobs": {
    "include": [
      {
        "dist": "bionic",
        "os": "linux"
      },
      {
        "dist": "focal",
        "os": "linux"
      },
      {
        "osx_image": "xcode12.5",
        "os": "osx"
      },
      {
        "os": "windows"
      }
    ]
  },
  "compiler": [
    "gcc"
  ],
  "before_install": [
    "export FILE_ROOT=\"arrowkdb\"",
    "export BUILD=\"True\"",
    "export TESTS=\"True\"",
    "if [[ $BUILD == \"True\" ]]; then chmod +x travis_setup.sh; ./travis_setup.sh; export LIB=\"cmake/$FILE_ROOT/lib\"; mkdir cmake; else export LIB=\"\"; fi",
    "if [[ $BUILD == \"True\" ]]; then if [[ $TRAVIS_OS_NAME == \"windows\" || $TRAVIS_OS_NAME == \"osx\" ]]; then export ARROW_INSTALL=$TRAVIS_BUILD_DIR/cbuild/install; export LD_LIBRARY_PATH=$ARROW_INSTALL/lib:$LD_LIBRARY_PATH; export DYLD_LIBRARY_PATH=$ARROW_INSTALL/lib:$LD_LIBRARY_PATH; export PATH=$ARROW_INSTALL/bin:$PATH; fi fi",
    "if [[ $TRAVIS_OS_NAME == \"linux\" ]]; then QLIBDIR=l64; OD=$L64; elif [[ $TRAVIS_OS_NAME == \"osx\" ]]; then QLIBDIR=m64; OD=$M64; elif [[ $TRAVIS_OS_NAME == \"windows\" ]]; then QLIBDIR=w64; OD=$W64; else echo \"unknown OS ('$TRAVIS_OS_NAME')\" >&2; exit 1; fi",
    "export QLIBDIR",
    "mkdir qhome;",
    "export QHOME=$(pwd)/qhome;",
    "export PATH=$QHOME/$QLIBDIR:$PATH;",
    "if [[ $TESTS == \"True\" && \"x$OD\" != \"x\" && \"x$QLIC_KC\" != \"x\" ]]; then curl -u $NEXUS_USER:$NEXUS_PASS -o qhome/q.zip -L $OD; unzip -d qhome qhome/q.zip; rm qhome/q.zip; echo -n $QLIC_KC |base64 --decode > qhome/kc.lic; else echo No kdb+, no tests; fi",
    "if [[ $TRAVIS_OS_NAME == \"windows\" ]]; then export FILE_TAIL=\"zip\"; else export FILE_TAIL=\"tgz\"; fi",
    "export FILE_NAME=$FILE_ROOT-$TRAVIS_OS_NAME-$TRAVIS_BRANCH.$FILE_TAIL",
    "if [[ $BUILD == \"True\" && $TRAVIS_OS_NAME == \"windows\" ]]; then cd cmake && cmake -G \"Visual Studio 15 2017 Win64\" .. -DARROW_INSTALL=$ARROW_INSTALL; cmake --build . --config Release; cmake --build . --config Release --target install; cd ..; elif [[ $BUILD == \"True\" && ( $TRAVIS_OS_NAME == \"linux\" || $TRAVIS_OS_NAME == \"osx\" ) ]]; then cd cmake && cmake .. -DCMAKE_BUILD_TYPE=Release -DARROW_INSTALL=$ARROW_INSTALL && make install && cd .. ; fi"
  ],
  "script": [
    "if [[ $TESTS == \"True\" && \"x$OD\" != \"x\" && \"x$QLIC_KC\" != \"x\" ]]; then curl -o test.q -L https://github.com/KxSystems/hdf5/raw/master/test.q; if [[ $TRAVIS_OS_NAME == \"windows\" ]]; then q test.q tests -q && q test.q tests/null_mapping -q && q test.q tests/null_bitmap -q; else q test.q tests -q && q test.q tests/null_mapping -q && q test.q tests/null_bitmap -q && q test.q tests/orc_dataloader -q; fi fi",
    "if [[ $TRAVIS_OS_NAME == \"windows\" && $BUILD == \"True\" ]]; then 7z a -tzip -r $FILE_NAME ./cmake/$FILE_ROOT/*; elif [[ $BUILD == \"True\" && ( $TRAVIS_OS_NAME == \"linux\" || $TRAVIS_OS_NAME == \"osx\" ) ]]; then tar  -zcvf $FILE_NAME -C cmake/$FILE_ROOT .; elif [[ $TRAVIS_OS_NAME == \"windows\" ]]; then 7z a -tzip $FILE_NAME README.md install.bat LICENSE q docs examples proto; elif [[ $TRAVIS_OS_NAME == \"linux\" || $TRAVIS_OS_NAME == \"osx\" ]]; then tar  -zcvf $FILE_NAME README.md install.sh LICENSE q docs examples proto; fi"
  ],
  "deploy": [
    {
      "provider": "releases",
      "token": "$GITHUB_APIKEY",
      "file": [
        "$FILE_NAME"
      ],
      "on": {
        "tags": true,
        "condition": [
          "$TRAVIS_OS_NAME = windows || $TRAVIS_OS_NAME = osx || ($TRAVIS_DIST = bionic && $TRAVIS_OS_NAME = linux)"
        ]
      },
      "skip_cleanup": true
    }
  ]
}