From: "Alexander V. Tikhonov" <avtikhon@tarantool.org> To: Oleg Piskunov <o.piskunov@tarantool.org> Cc: tarantool-patches@dev.tarantool.org Subject: [Tarantool-patches] [PATCH v1] gitlab-ci: implement OSX 10.14 testing on mac mini Date: Thu, 27 Feb 2020 10:47:49 +0300 [thread overview] Message-ID: <fca6f2e0dac886cbd822a8935d30b3d91a120d23.1582789609.git.avtikhon@tarantool.org> (raw) Added mac mini hosts into testing and set to it all OSX 10.14 test jobs with new osx_14 gitlab-runner tag. Also made additional setup: - added PATHs to python2 and pip - set 'var' directory for test-run tool to the shorter path name to avoid of issues with long names. --- Github: https://github.com/tarantool/tarantool/tree/avtikhon/osx_on_mini14-full-ci .gitlab-ci.yml | 19 ++++++------------- .gitlab.mk | 2 +- .travis.mk | 14 +++++++++----- 3 files changed, 16 insertions(+), 19 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 5177a9903..47e4af5a2 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -152,28 +152,21 @@ osx_13_release: - ${GITLAB_MAKE} vms_test_osx osx_14_release: - <<: *vbox_definition + <<: *docker_test_definition tags: - - vms_osx_14 - variables: - VMS_NAME: 'osx_14' - VMS_USER: 'tarantool' - VMS_PORT: '2222' + - osx_14 script: - - ${GITLAB_MAKE} vms_test_osx + - ${GITLAB_MAKE} test_osx osx_14_release_lto: <<: *release_only_definition - <<: *vbox_definition + <<: *docker_test_definition tags: - - vms_osx_14 + - osx_14 variables: EXTRA_ENV: "export CMAKE_EXTRA_PARAMS=-DENABLE_LTO=ON ;" - VMS_NAME: 'osx_14' - VMS_USER: 'tarantool' - VMS_PORT: '2222' script: - - ${GITLAB_MAKE} vms_test_osx + - ${GITLAB_MAKE} test_osx freebsd_12_release: <<: *vbox_definition diff --git a/.gitlab.mk b/.gitlab.mk index b39c5c651..d804d3cf6 100644 --- a/.gitlab.mk +++ b/.gitlab.mk @@ -14,7 +14,7 @@ git_submodule_update: git submodule update --recursive --init # Pass *_no_deps goals to .travis.mk. -test_%_no_deps: git_submodule_update +test_%: git_submodule_update ${TRAVIS_MAKE} $@ # ####################################################### diff --git a/.travis.mk b/.travis.mk index 42969ff56..fca86b569 100644 --- a/.travis.mk +++ b/.travis.mk @@ -130,10 +130,12 @@ test_asan_debian: deps_debian deps_buster_clang_8 test_asan_debian_no_deps deps_osx: brew update brew install openssl readline curl icu4c libiconv zlib autoconf automake libtool --force - python2 -V || brew install python2 --force - curl --silent --show-error --retry 5 https://bootstrap.pypa.io/get-pip.py >get-pip.py - python get-pip.py --user - pip install --user --force-reinstall -r test-run/requirements.txt + export PATH=/System/Library/Frameworks/Python.framework/Versions/2.7/bin:${PATH} ; \ + export PATH=${PATH}:/Users/${USER}/Library/Python/2.7/bin ; \ + python2 -V || brew install python2 --force ; \ + curl --silent --show-error --retry 5 https://bootstrap.pypa.io/get-pip.py >get-pip.py ; \ + python get-pip.py --user ; \ + pip install --user --force-reinstall -r test-run/requirements.txt build_osx: cmake . -DCMAKE_BUILD_TYPE=RelWithDebInfo -DENABLE_WERROR=ON ${CMAKE_EXTRA_PARAMS} @@ -152,7 +154,9 @@ test_osx_no_deps: build_osx launchctl limit maxfiles || : ; \ ulimit -n ${MAX_FILES} || : ; \ ulimit -n ; \ - cd test && ./test-run.py --force $(TEST_RUN_EXTRA_PARAMS) \ + export PATH=/System/Library/Frameworks/Python.framework/Versions/2.7/bin:${PATH} ; \ + rm -rf /tmp/tnt ; \ + cd test && ./test-run.py --vardir /tmp/tnt --force $(TEST_RUN_EXTRA_PARAMS) \ app/ app-tap/ box/ box-py/ box-tap/ engine/ engine_long/ long_run-py/ luajit-tap/ \ replication-py/ small/ sql/ sql-tap/ swim/ unit/ vinyl/ wal_off/ xlog/ xlog-py/ -- 2.17.1
next reply other threads:[~2020-02-27 7:47 UTC|newest] Thread overview: 6+ messages / expand[flat|nested] mbox.gz Atom feed top 2020-02-27 7:47 Alexander V. Tikhonov [this message] 2020-03-06 12:45 Alexander V. Tikhonov 2020-03-27 7:29 Alexander V. Tikhonov 2020-03-31 5:34 ` Oleg Piskunov 2020-03-31 9:10 ` Sergey Bronnikov 2020-04-02 7:43 ` Kirill Yukhin
Reply instructions: You may reply publicly to this message via plain-text email using any one of the following methods: * Save the following mbox file, import it into your mail client, and reply-to-all from there: mbox Avoid top-posting and favor interleaved quoting: https://en.wikipedia.org/wiki/Posting_style#Interleaved_style * Reply using the --to, --cc, and --in-reply-to switches of git-send-email(1): git send-email \ --in-reply-to=fca6f2e0dac886cbd822a8935d30b3d91a120d23.1582789609.git.avtikhon@tarantool.org \ --to=avtikhon@tarantool.org \ --cc=o.piskunov@tarantool.org \ --cc=tarantool-patches@dev.tarantool.org \ --subject='Re: [Tarantool-patches] [PATCH v1] gitlab-ci: implement OSX 10.14 testing on mac mini' \ /path/to/YOUR_REPLY https://kernel.org/pub/software/scm/git/docs/git-send-email.html * If your mail client supports setting the In-Reply-To header via mailto: links, try the mailto: link
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox