Skip to content

Commit

Permalink
chore: update ci build with the last version informations
Browse files Browse the repository at this point in the history
  • Loading branch information
tglman committed May 17, 2024
1 parent 2abdde5 commit 5beef25
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
python-version: ${{ matrix.python-version }}
- run: pip install coveralls
- run: pip install nose
- run: ./ci/start-ci.sh 3.2.24
- run: ./ci/start-ci.sh 3.2.29
- run: nosetests -vv --with-coverage --cover-xml --cover-erase --cover-package=pyorient


2 changes: 0 additions & 2 deletions ci/orientdb-server-config_3.2.xml
Original file line number Diff line number Diff line change
Expand Up @@ -128,8 +128,6 @@
<entry name="http.cache:default" value="Cache-Control: max-age=120"/>
</parameters>
</command>
<command pattern="GET|gephi/*"
implementation="com.orientechnologies.orient.server.network.protocol.http.command.get.OServerCommandGetGephi"/>

</commands>
</listener>
Expand Down
6 changes: 3 additions & 3 deletions ci/start-ci.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ set -e

PARENT_DIR=$(dirname $(cd "$(dirname "$0")"; pwd))
CI_DIR="$PARENT_DIR/ci/environment"
DEFAULT_ORIENT_VERSION="3.2.12"
DEFAULT_ORIENT_VERSION="3.2.24"

# launch simple instance in debug mode with shell hang up
while [ $# -ne 0 ]; do
Expand Down Expand Up @@ -48,12 +48,12 @@ if [ ! -d "$ODB_DIR/bin" ]; then

if [[ "${ODB_VERSION}" == "1.7.10" ]]; then
cp ${PARENT_DIR}/ci/orientdb-server-config_1.7.10.xml "${ODB_DIR}/config/orientdb-server-config.xml"
elif [[ "${ODB_VERSION}" == *"3.2"* ]]; then
cp ${PARENT_DIR}/ci/orientdb-server-config_3.2.xml "${ODB_DIR}/config/orientdb-server-config.xml"
elif [[ "${ODB_VERSION}" == *"2.1"* ]]; then
cp ${PARENT_DIR}/ci/orientdb-server-config_2.0.xml "${ODB_DIR}/config/orientdb-server-config.xml"
elif [[ "${ODB_VERSION}" != *"2.0"* ]]; then
cp ${PARENT_DIR}/ci/orientdb-server-config.xml "${ODB_DIR}/config/orientdb-server-config.xml"
elif [[ "${ODB_VERSION}" != *"3.2"* ]]; then
cp ${PARENT_DIR}/ci/orientdb-server-config_3.2.xml "${ODB_DIR}/config/orientdb-server-config.xml"
else
cp ${PARENT_DIR}/ci/orientdb-server-config_2.0.xml "${ODB_DIR}/config/orientdb-server-config.xml"
fi
Expand Down

0 comments on commit 5beef25

Please sign in to comment.