diff options
author | Joseph Hunkeler <jhunkeler@gmail.com> | 2020-09-03 12:37:16 -0400 |
---|---|---|
committer | Joseph Hunkeler <jhunkeler@gmail.com> | 2020-09-03 12:37:16 -0400 |
commit | 076d873983d93b61cd00132e7e105ef462042ae2 (patch) | |
tree | 78f7a08fb7d6eef39a4c6b4dffb2abf828bc9d60 | |
parent | 4a75ee22e74708d36a864538cdd5f6bc83a9520e (diff) | |
download | multihome-076d873983d93b61cd00132e7e105ef462042ae2.tar.gz |
Remove CircleCI:
* No access to build logs without Github+OAuth
* https://discuss.circleci.com/t/open-source-project-build-log-requires-authentication-to-view/37287
-rw-r--r-- | .circleci/config.yml | 47 |
1 files changed, 0 insertions, 47 deletions
diff --git a/.circleci/config.yml b/.circleci/config.yml deleted file mode 100644 index 482b103..0000000 --- a/.circleci/config.yml +++ /dev/null @@ -1,47 +0,0 @@ -version: 2.1 - -jobs: - build: - machine: - image: ubuntu-1604:202007-01 - steps: - - checkout - - run: cmake -DCMAKE_INSTALL_PREFIX=/usr/local -DCMAKE_C_FLAGS="-DENABLE_TESTING -g" . - - run: make - - run: ./multihome -t - - run: sudo make install - - run: multihome -s - - run: - name: "Runtime test" - command: | - . ~/.multihome/init - . /etc/profile - . ~/.profile - - echo "multihome location: $MULTIHOME" - echo "Current HOME: $HOME" - echo "Previous HOME: $HOME_OLD" - echo "Current PATH: $PATH" - - echo "System account structure (/etc/skel):" - ls -la /etc/skel - - echo "Current HOME structure:" - ls -la ~ - - echo "test file" > topdir/.multihome/skel/TESTFILE - - echo "T bin/" > topdir/.multihome/transfer - echo "H .gitconfig" >> topdir/.multihome/transfer - echo "L .gemrc" >> topdir/.multihome/transfer - - multihome -u - - echo "Updated HOME structure:" - ls -la ~ - - test -f ~/TESTFILE - test -d ~/bin - test -f ~/.gitconfig - test -L ~/.gemrc - |