Tarantool development patches archive
 help / color / mirror / Atom feed
* [Tarantool-patches] [PATCH luajit 0/8] LuaJIT tests and CI enhancements
@ 2022-08-11 11:17 Igor Munkin via Tarantool-patches
  2022-08-11 11:17 ` [Tarantool-patches] [PATCH luajit 1/8] test: introduce LUAJIT_TEST_VARDIR variable Igor Munkin via Tarantool-patches
                   ` (8 more replies)
  0 siblings, 9 replies; 39+ messages in thread
From: Igor Munkin via Tarantool-patches @ 2022-08-11 11:17 UTC (permalink / raw)
  To: Sergey Kaplun, Sergey Bronnikov; +Cc: tarantool-patches

This patchset contains several enhancements:
* The first patch introduces LUAJIT_TEST_VARDIR required by #7472[1].
* The three next patches fix Tarantool testing suite to be run out of
  LuaJIT source tree and replace in source build in GitHub Actions.
* The fifth patch removes the excess line from macOS M1 workflow.
* The sixth patch removes arch prefix for macOS M1 workflow.
* The last two patches merge all testing workflows into a single one.

Branch: https://github.com/tarantool/luajit/tree/imun/tweak-tests

Igor Munkin (8):
  test: introduce LUAJIT_TEST_VARDIR variable
  test: introduce MakeLuaPath.cmake helper
  test: fix tarantool suite for out of source build
  ci: use out of source build in GitHub Actions
  ci: remove excess parallel level setup
  ci: remove arch prefix for macOS M1 workflow
  ci: merge x86_64 and ARM64 workflows
  ci: merge Linux and macOS workflows

 .github/actions/environment/action.yml        |  13 --
 .github/actions/setup-linux/README.md         |  12 ++
 .github/actions/setup-linux/action.yml        |  19 ++
 .github/actions/setup-macos/README.md         |  12 ++
 .github/actions/setup-macos/action.yml        |  29 +++
 .../actions/{environment => setup}/README.md  |   5 +-
 .github/actions/setup/action.yml              |  10 +
 .github/workflows/lint.yml                    |  11 +-
 .github/workflows/linux-aarch64.yml           |  79 -------
 .github/workflows/linux-x86_64-ninja.yml      |  12 +-
 .github/workflows/linux-x86_64.yml            |  98 ---------
 .github/workflows/macos-m1.yml                |  94 --------
 .github/workflows/macos-x86_64.yml            | 107 ----------
 .github/workflows/testing.yml                 | 200 ++++++++++++++++++
 cmake/MakeLuaPath.cmake                       |  46 ++++
 test/CMakeLists.txt                           |   2 +
 test/PUC-Rio-Lua-5.1-tests/CMakeLists.txt     |   8 +-
 test/lua-Harness-tests/CMakeLists.txt         |  16 +-
 test/tarantool-tests/CMakeLists.txt           |  37 ++--
 .../gh-5813-resolving-of-c-symbols.test.lua   |   6 +-
 .../misclib-memprof-lapi.test.lua             |  22 +-
 .../misclib-sysprof-lapi.test.lua             |   8 +-
 test/tarantool-tests/utils.lua                |  12 ++
 23 files changed, 423 insertions(+), 435 deletions(-)
 delete mode 100644 .github/actions/environment/action.yml
 create mode 100644 .github/actions/setup-linux/README.md
 create mode 100644 .github/actions/setup-linux/action.yml
 create mode 100644 .github/actions/setup-macos/README.md
 create mode 100644 .github/actions/setup-macos/action.yml
 rename .github/actions/{environment => setup}/README.md (72%)
 create mode 100644 .github/actions/setup/action.yml
 delete mode 100644 .github/workflows/linux-aarch64.yml
 delete mode 100644 .github/workflows/linux-x86_64.yml
 delete mode 100644 .github/workflows/macos-m1.yml
 delete mode 100644 .github/workflows/macos-x86_64.yml
 create mode 100644 .github/workflows/testing.yml
 create mode 100644 cmake/MakeLuaPath.cmake

-- 
2.34.0


^ permalink raw reply	[flat|nested] 39+ messages in thread

end of thread, other threads:[~2022-11-11  9:10 UTC | newest]

Thread overview: 39+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-08-11 11:17 [Tarantool-patches] [PATCH luajit 0/8] LuaJIT tests and CI enhancements Igor Munkin via Tarantool-patches
2022-08-11 11:17 ` [Tarantool-patches] [PATCH luajit 1/8] test: introduce LUAJIT_TEST_VARDIR variable Igor Munkin via Tarantool-patches
2022-08-15 12:08   ` Sergey Bronnikov via Tarantool-patches
2022-08-18  8:27     ` Sergey Kaplun via Tarantool-patches
2022-08-31 14:53     ` Igor Munkin via Tarantool-patches
2022-09-02 12:06       ` Sergey Bronnikov via Tarantool-patches
2022-10-05 19:51         ` Igor Munkin via Tarantool-patches
2022-08-11 11:17 ` [Tarantool-patches] [PATCH luajit 2/8] test: introduce MakeLuaPath.cmake helper Igor Munkin via Tarantool-patches
2022-08-15 12:08   ` Sergey Bronnikov via Tarantool-patches
2022-08-31 15:07     ` Igor Munkin via Tarantool-patches
2022-09-02 12:09       ` Sergey Bronnikov via Tarantool-patches
2022-08-18  9:37   ` Sergey Kaplun via Tarantool-patches
2022-08-31 15:19     ` Igor Munkin via Tarantool-patches
2022-09-01 10:16       ` Sergey Kaplun via Tarantool-patches
2022-08-11 11:17 ` [Tarantool-patches] [PATCH luajit 3/8] test: fix tarantool suite for out of source build Igor Munkin via Tarantool-patches
2022-08-15 12:10   ` Sergey Bronnikov via Tarantool-patches
2022-08-18  9:49   ` Sergey Kaplun via Tarantool-patches
2022-08-31 17:20     ` Igor Munkin via Tarantool-patches
2022-08-11 11:17 ` [Tarantool-patches] [PATCH luajit 4/8] ci: use out of source build in GitHub Actions Igor Munkin via Tarantool-patches
2022-08-15 12:13   ` Sergey Bronnikov via Tarantool-patches
2022-08-18  9:58     ` Sergey Kaplun via Tarantool-patches
2022-08-31 15:34       ` Igor Munkin via Tarantool-patches
2022-08-31 15:33     ` Igor Munkin via Tarantool-patches
2022-09-02 12:09       ` Sergey Bronnikov via Tarantool-patches
2022-08-11 11:17 ` [Tarantool-patches] [PATCH luajit 5/8] ci: remove excess parallel level setup Igor Munkin via Tarantool-patches
2022-08-15 12:14   ` Sergey Bronnikov via Tarantool-patches
2022-08-18 10:09   ` Sergey Kaplun via Tarantool-patches
2022-08-11 11:17 ` [Tarantool-patches] [PATCH luajit 6/8] ci: remove arch prefix for macOS M1 workflow Igor Munkin via Tarantool-patches
2022-08-15 12:17   ` Sergey Bronnikov via Tarantool-patches
2022-08-18 10:14   ` Sergey Kaplun via Tarantool-patches
2022-08-31 15:55     ` Igor Munkin via Tarantool-patches
2022-08-11 11:17 ` [Tarantool-patches] [PATCH luajit 7/8] ci: merge x86_64 and ARM64 workflows Igor Munkin via Tarantool-patches
2022-08-15 12:22   ` Sergey Bronnikov via Tarantool-patches
2022-08-18 10:21   ` Sergey Kaplun via Tarantool-patches
2022-08-31 16:02     ` Igor Munkin via Tarantool-patches
2022-08-11 11:17 ` [Tarantool-patches] [PATCH luajit 8/8] ci: merge Linux and macOS workflows Igor Munkin via Tarantool-patches
2022-08-15 12:27   ` Sergey Bronnikov via Tarantool-patches
2022-08-18 10:32   ` Sergey Kaplun via Tarantool-patches
2022-11-11  8:56 ` [Tarantool-patches] [PATCH luajit 0/8] LuaJIT tests and CI enhancements Igor Munkin via Tarantool-patches

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox