Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
E
edx-notes-api
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
edx
edx-notes-api
Commits
feb533fb
Commit
feb533fb
authored
Feb 01, 2017
by
Fred Smith
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
remove old travis scripts
parent
1dc3ca50
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
0 additions
and
44 deletions
+0
-44
scripts/travis/install.sh
+0
-16
scripts/travis/setup.sh
+0
-28
No files found.
scripts/travis/install.sh
deleted
100755 → 0
View file @
1dc3ca50
#!/bin/bash
# Installs Elasticsearch
#
# Requires ESVER environment variable to be set.
set
-e
if
[[
$ESVER
==
"-"
]]
;
then
exit
0
fi
echo
"Installing ElasticSearch
$ESVER
"
>
&2
wget https://download.elasticsearch.org/elasticsearch/elasticsearch/elasticsearch-
$ESVER
.tar.gz
tar
xzvf elasticsearch-
$ESVER
.tar.gz
scripts/travis/setup.sh
deleted
100755 → 0
View file @
1dc3ca50
#!/bin/bash
# Runs Elasticsearch
#
# Requires ESVER environment variable to be set.
# cwd is the git repository root.
set
-e
if
[[
$ESVER
==
"-"
]]
;
then
exit
0
fi
echo
"Starting ElasticSearch
$ESVER
"
>
&2
pushd
elasticsearch-
$ESVER
# Elasticsearch 0.90 daemonizes automatically, but 1.0+ requires
# a -d argument.
if
[[
$ESVER
==
0
*
]]
;
then
./bin/elasticsearch
else
echo
"launching with -d option."
>
&2
./bin/elasticsearch
-d
pip install
elasticsearch
==
1.3.0
fi
popd
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment