From: Igor Munkin via Tarantool-patches <tarantool-patches@dev.tarantool.org>
To: Sergey Kaplun <skaplun@tarantool.org>,
Sergey Bronnikov <sergeyb@tarantool.org>
Cc: tarantool-patches@dev.tarantool.org
Subject: [Tarantool-patches] [PATCH luajit 8/8] ci: merge Linux and macOS workflows
Date: Thu, 11 Aug 2022 14:17:47 +0300 [thread overview]
Message-ID: <32fe27e53d288f81debc4acf6fa3624f6de5773f.1660216002.git.imun@tarantool.org> (raw)
In-Reply-To: <cover.1660216002.git.imun@tarantool.org>
As a result of two previous commits, there is no difference left between
Linux and macOS workflows except the environment setup (environment
variables, dependencies installation). Hence there is no reason to have a
separate workflow file for each OS type.
Signed-off-by: Igor Munkin <imun@tarantool.org>
---
.github/actions/environment/action.yml | 18 ---
.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 | 8 +-
.github/workflows/linux-x86_64-ninja.yml | 6 +-
.github/workflows/macos.yml | 142 ------------------
.github/workflows/{linux.yml => testing.yml} | 113 +++++++++++---
11 files changed, 186 insertions(+), 188 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/macos.yml
rename .github/workflows/{linux.yml => testing.yml} (52%)
diff --git a/.github/actions/environment/action.yml b/.github/actions/environment/action.yml
deleted file mode 100644
index 7fb2625f..00000000
--- a/.github/actions/environment/action.yml
+++ /dev/null
@@ -1,18 +0,0 @@
-name: 'Setup CI environment'
-description: 'Common part to tweak CI runner environment'
-runs:
- using: 'composite'
- steps:
- - run: |
- # Set CMAKE_BUILD_PARALLEL_LEVEL environment variable to
- # limit the number of parallel jobs for build/test step.
- # Try the exotic Darwin way at first and fallback to nproc
- # that is the default for the normal systems.
- NPROC=$(sysctl -n hw.logicalcpu 2>/dev/null || nproc)
- echo CMAKE_BUILD_PARALLEL_LEVEL=$(($NPROC + 1)) | tee -a $GITHUB_ENV
- shell: bash
- - run: |
- # Set BUILDDIR environment variable to specify LuaJIT
- # build directory.
- echo "BUILDDIR=${{ runner.temp }}/build-${{ github.run_id }}" | tee -a $GITHUB_ENV
- shell: bash
diff --git a/.github/actions/setup-linux/README.md b/.github/actions/setup-linux/README.md
new file mode 100644
index 00000000..48ae9e01
--- /dev/null
+++ b/.github/actions/setup-linux/README.md
@@ -0,0 +1,12 @@
+# Setup environment on Linux
+
+Action setups the environment on Linux runners (install requirements, setup the
+workflow environment, etc).
+
+## How to use Github Action from Github workflow
+
+Add the following code to the running steps before LuaJIT configuration:
+```
+- uses: ./.github/actions/setup-linux
+ if: ${{ matrix.OS == 'Linux' }}
+```
diff --git a/.github/actions/setup-linux/action.yml b/.github/actions/setup-linux/action.yml
new file mode 100644
index 00000000..a13f143c
--- /dev/null
+++ b/.github/actions/setup-linux/action.yml
@@ -0,0 +1,19 @@
+name: Setup CI environment on Linux
+description: Common part to tweak Linux CI runner environment
+runs:
+ using: composite
+ steps:
+ - name: Setup CI environment
+ uses: ./.github/actions/setup
+ - name: Set CMAKE_BUILD_PARALLEL_LEVEL
+ run: |
+ # Set CMAKE_BUILD_PARALLEL_LEVEL environment variable to
+ # limit the number of parallel jobs for build/test step.
+ NPROC=$(nproc)
+ echo CMAKE_BUILD_PARALLEL_LEVEL=$(($NPROC + 1)) | tee -a $GITHUB_ENV
+ shell: bash
+ - name: Install build and test dependencies
+ run: |
+ apt -y update
+ apt -y install cmake gcc make perl
+ shell: bash
diff --git a/.github/actions/setup-macos/README.md b/.github/actions/setup-macos/README.md
new file mode 100644
index 00000000..ae70cb56
--- /dev/null
+++ b/.github/actions/setup-macos/README.md
@@ -0,0 +1,12 @@
+# Setup environment on macOS
+
+Action setups the environment on macOS runners (install requirements, setup the
+workflow environment, etc).
+
+## How to use Github Action from Github workflow
+
+Add the following code to the running steps before LuaJIT configuration:
+```
+- uses: ./.github/actions/setup-macos
+ if: ${{ matrix.OS == 'macOS' }}
+```
diff --git a/.github/actions/setup-macos/action.yml b/.github/actions/setup-macos/action.yml
new file mode 100644
index 00000000..7a98065c
--- /dev/null
+++ b/.github/actions/setup-macos/action.yml
@@ -0,0 +1,29 @@
+name: Setup CI environment on macOS
+description: Common part to tweak macOS CI runner environment
+runs:
+ using: composite
+ steps:
+ - name: Setup CI environment
+ uses: ./.github/actions/setup
+ - name: Set CMAKE_BUILD_PARALLEL_LEVEL
+ run: |
+ # Set CMAKE_BUILD_PARALLEL_LEVEL environment variable to
+ # limit the number of parallel jobs for build/test step.
+ NPROC=$(sysctl -n hw.logicalcpu 2>/dev/null)
+ echo CMAKE_BUILD_PARALLEL_LEVEL=$(($NPROC + 1)) | tee -a $GITHUB_ENV
+ shell: bash
+ - name: Install build and test dependencies
+ run: |
+ # Install brew using the command from Homebrew repository
+ # instructions: https://github.com/Homebrew/install.
+ # XXX: 'echo' command below is required since brew
+ # installation script obliges the one to enter a newline
+ # for confirming the installation via Ruby script.
+ brew update ||
+ echo | /usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
+ # Try to install the packages either upgrade it to avoid
+ # of fails if the package already exists with the previous
+ # version.
+ brew install --force cmake gcc make perl ||
+ brew upgrade cmake gcc make perl
+ shell: bash
diff --git a/.github/actions/environment/README.md b/.github/actions/setup/README.md
similarity index 72%
rename from .github/actions/environment/README.md
rename to .github/actions/setup/README.md
index 1ed0d0ca..87b5bf8d 100644
--- a/.github/actions/environment/README.md
+++ b/.github/actions/setup/README.md
@@ -6,7 +6,8 @@ It is used as a common environment setup for the different testing workflows.
## How to use Github Action from Github workflow
-Add the following code to the running steps after checkout is finished:
+Add the following code to the running steps or OS-specific GitHub Actions after
+checkout step is finished:
```
-- uses: ./.github/actions/environment
+- uses: ./.github/actions/setup
```
diff --git a/.github/actions/setup/action.yml b/.github/actions/setup/action.yml
new file mode 100644
index 00000000..f153b0d9
--- /dev/null
+++ b/.github/actions/setup/action.yml
@@ -0,0 +1,10 @@
+name: Setup CI environment
+description: Common part to tweak CI runner environment
+runs:
+ using: composite
+ steps:
+ - run: |
+ # Set BUILDDIR environment variable to specify LuaJIT
+ # build directory.
+ echo BUILDDIR=${{ runner.temp }}/build-${{ github.run_id }} | tee -a $GITHUB_ENV
+ shell: bash
diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml
index 64e8f992..04b810f2 100644
--- a/.github/workflows/lint.yml
+++ b/.github/workflows/lint.yml
@@ -1,4 +1,4 @@
-name: "LuaJIT static analysis"
+name: Static analysis
on:
push:
@@ -38,12 +38,16 @@ jobs:
fetch-depth: 0
submodules: recursive
- name: environment
- uses: ./.github/actions/environment
+ uses: ./.github/actions/setup
- name: setup
run: |
+ # TODO: Move this step to a separate action.
sudo apt -y update
sudo apt -y install cmake make lua5.1 luarocks
sudo luarocks install luacheck
+ # Set CMAKE_BUILD_PARALLEL_LEVEL environment variable to
+ # limit the number of parallel jobs for build/test step.
+ echo CMAKE_BUILD_PARALLEL_LEVEL=$(($(nproc) + 1)) | tee -a $GITHUB_ENV
- name: configure
run: cmake -S . -B ${{ env.BUILDDIR }}
- name: test
diff --git a/.github/workflows/linux-x86_64-ninja.yml b/.github/workflows/linux-x86_64-ninja.yml
index 72d56d54..a0422d09 100644
--- a/.github/workflows/linux-x86_64-ninja.yml
+++ b/.github/workflows/linux-x86_64-ninja.yml
@@ -38,11 +38,15 @@ jobs:
fetch-depth: 0
submodules: recursive
- name: environment
- uses: ./.github/actions/environment
+ uses: ./.github/actions/setup
- name: setup
run: |
+ # TODO: Move this step to a separate action.
sudo apt -y update
sudo apt -y install cmake gcc ninja-build perl
+ # Set CMAKE_BUILD_PARALLEL_LEVEL environment variable to
+ # limit the number of parallel jobs for build/test step.
+ echo CMAKE_BUILD_PARALLEL_LEVEL=$(($(nproc) + 1)) | tee -a $GITHUB_ENV
- name: configure
run: >
cmake -S . -B ${{ env.BUILDDIR }}
diff --git a/.github/workflows/macos.yml b/.github/workflows/macos.yml
deleted file mode 100644
index 2fa97f1e..00000000
--- a/.github/workflows/macos.yml
+++ /dev/null
@@ -1,142 +0,0 @@
-name: "macOS test workflow"
-
-on:
- push:
- branches-ignore:
- - '**-notest'
- - 'upstream-**'
- tags-ignore:
- - '**'
-
-concurrency:
- # An update of a developer branch cancels the previously
- # scheduled workflow run for this branch. However, the default
- # branch, and long-term branch (tarantool-1.10, tarantool-2.8,
- # etc.) workflow runs are never canceled.
- #
- # We use a trick here: define the concurrency group as 'workflow
- # run ID' + # 'workflow run attempt' because it is a unique
- # combination for any run. So it effectively discards grouping.
- #
- # XXX: we cannot use `github.sha` as a unique identifier because
- # pushing a tag may cancel a run that works on a branch push
- # event.
- group: ${{ (
- github.ref == 'refs/heads/tarantool' ||
- startsWith(github.ref, 'refs/heads/tarantool-')) &&
- format('{0}-{1}', github.run_id, github.run_attempt) ||
- format('{0}-{1}', github.workflow, github.ref) }}
- cancel-in-progress: true
-
-jobs:
- test-luajit:
- strategy:
- fail-fast: false
- matrix:
- ARCH: [M1, x86_64]
- BUILDTYPE: [Debug, Release]
- GC64: [ON, OFF]
- include:
- - ARCH: M1
- RUNNER: macos-11-m1
- - ARCH: x86_64
- RUNNER: macos-11
- - BUILDTYPE: Debug
- CMAKEFLAGS: -DCMAKE_BUILD_TYPE=Debug -DLUA_USE_ASSERT=ON -DLUA_USE_APICHECK=ON
- - BUILDTYPE: Release
- CMAKEFLAGS: -DCMAKE_BUILD_TYPE=RelWithDebInfo
- exclude:
- - ARCH: M1
- GC64: OFF
- runs-on: ${{ matrix.RUNNER }}
- name: >
- LuaJIT
- ${{ matrix.ARCH }}
- ${{ matrix.BUILDTYPE }}
- GC64:${{ matrix.GC64 }}
- steps:
- - uses: actions/checkout@v2.3.4
- with:
- fetch-depth: 0
- submodules: recursive
- - name: environment
- uses: ./.github/actions/environment
- - name: setup
- run: |
- # Install brew using the command from Homebrew repository
- # instructions: https://github.com/Homebrew/install.
- # XXX: 'echo' command below is required since brew installation
- # script obliges the one to enter a newline for confirming the
- # installation via Ruby script.
- brew update ||
- echo | /usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
- # Try to install the packages either upgrade it to avoid of fails
- # if the package already exists with the previous version.
- brew install --force cmake gcc make perl ||
- brew upgrade cmake gcc make perl
- - name: configure
- run: >
- cmake -S . -B ${{ env.BUILDDIR }}
- ${{ matrix.CMAKEFLAGS }}
- -DLUAJIT_ENABLE_GC64=${{ matrix.GC64 }}
- - name: build
- run: cmake --build . --parallel
- working-directory: ${{ env.BUILDDIR }}
- - name: test
- run: cmake --build . --parallel --target test
- working-directory: ${{ env.BUILDDIR }}
-
- test-tarantool-x86_64-debug-wo-GC64:
- name: Tarantool x86_64 Debug GC64:OFF
- needs: test-luajit
- uses: tarantool/tarantool/.github/workflows/luajit-integration.yml@master
- with:
- GC64: OFF
- buildtype: Debug
- host: macos-11
- revision: ${{ github.sha }}
- test-tarantool-x86_64-debug-w-GC64:
- name: Tarantool x86_64 Debug GC64:ON
- needs: test-luajit
- uses: tarantool/tarantool/.github/workflows/luajit-integration.yml@master
- with:
- GC64: ON
- buildtype: Debug
- host: macos-11
- revision: ${{ github.sha }}
- test-tarantool-x86_64-release-wo-GC64:
- name: Tarantool x86_64 Release GC64:OFF
- needs: test-luajit
- uses: tarantool/tarantool/.github/workflows/luajit-integration.yml@master
- with:
- GC64: OFF
- buildtype: RelWithDebInfo
- host: macos-11
- revision: ${{ github.sha }}
- test-tarantool-x86_64-release-w-GC64:
- name: Tarantool x86_64 Release GC64:ON
- needs: test-luajit
- uses: tarantool/tarantool/.github/workflows/luajit-integration.yml@master
- with:
- GC64: ON
- buildtype: RelWithDebInfo
- host: macos-11
- revision: ${{ github.sha }}
- test-tarantool-m1-debug-w-GC64:
- name: Tarantool M1 Debug GC64:ON
- needs: test-luajit
- uses: tarantool/tarantool/.github/workflows/luajit-integration.yml@master
- with:
- GC64: ON
- buildtype: Debug
- host: macos-11-m1
- revision: ${{ github.sha }}
- test-tarantool-m1-release-w-GC64:
- name: Tarantool M1 Release GC64:ON
- needs: test-luajit
- uses: tarantool/tarantool/.github/workflows/luajit-integration.yml@master
- with:
- GC64: ON
- buildtype: RelWithDebInfo
- host: macos-11-m1
- revision: ${{ github.sha }}
diff --git a/.github/workflows/linux.yml b/.github/workflows/testing.yml
similarity index 52%
rename from .github/workflows/linux.yml
rename to .github/workflows/testing.yml
index 125c8708..c4847335 100644
--- a/.github/workflows/linux.yml
+++ b/.github/workflows/testing.yml
@@ -1,4 +1,4 @@
-name: "Linux test workflow"
+name: Testing
on:
push:
@@ -33,25 +33,38 @@ jobs:
strategy:
fail-fast: false
matrix:
- ARCH: [aarch64, x86_64]
+ ARCH: [ARM64, x86_64]
BUILDTYPE: [Debug, Release]
GC64: [ON, OFF]
+ OS: [Linux, macOS]
include:
- - ARCH: aarch64
+ - ARCH: ARM64
+ OS: Linux
+ NAME: Linux/aarch64
RUNNER: graviton
- ARCH: x86_64
+ OS: Linux
+ NAME: Linux/x86_64
RUNNER: ubuntu-20.04-self-hosted
+ - ARCH: ARM64
+ OS: macOS
+ NAME: macOS/M1
+ RUNNER: macos-11-m1
+ - ARCH: x86_64
+ OS: macOS
+ NAME: macOS/x86_64
+ RUNNER: macos-11
- BUILDTYPE: Debug
CMAKEFLAGS: -DCMAKE_BUILD_TYPE=Debug -DLUA_USE_ASSERT=ON -DLUA_USE_APICHECK=ON
- BUILDTYPE: Release
CMAKEFLAGS: -DCMAKE_BUILD_TYPE=RelWithDebInfo
exclude:
- - ARCH: aarch64
+ - ARCH: ARM64
GC64: OFF
runs-on: ${{ matrix.RUNNER }}
name: >
LuaJIT
- ${{ matrix.ARCH }}
+ (${{ matrix.NAME }})
${{ matrix.BUILDTYPE }}
GC64:${{ matrix.GC64 }}
steps:
@@ -59,12 +72,12 @@ jobs:
with:
fetch-depth: 0
submodules: recursive
- - name: environment
- uses: ./.github/actions/environment
- - name: setup
- run: |
- sudo apt -y update
- sudo apt -y install cmake gcc make perl
+ - name: setup Linux
+ uses: ./.github/actions/setup-linux
+ if: ${{ matrix.OS == 'Linux' }}
+ - name: setup macOS
+ uses: ./.github/actions/setup-macos
+ if: ${{ matrix.OS == 'macOS' }}
- name: configure
run: >
cmake -S . -B ${{ env.BUILDDIR }}
@@ -77,8 +90,8 @@ jobs:
run: cmake --build . --parallel --target test
working-directory: ${{ env.BUILDDIR }}
- test-tarantool-x86_64-debug-wo-GC64:
- name: Tarantool x86_64 Debug GC64:OFF
+ test-tarantool-linux-x86_64-debug-wo-GC64:
+ name: Tarantool (Linux/x86_64) Debug GC64:OFF
needs: test-luajit
uses: tarantool/tarantool/.github/workflows/luajit-integration.yml@master
with:
@@ -86,8 +99,8 @@ jobs:
buildtype: Debug
host: ubuntu-20.04-self-hosted
revision: ${{ github.sha }}
- test-tarantool-x86_64-debug-w-GC64:
- name: Tarantool x86_64 Debug GC64:ON
+ test-tarantool-linux-x86_64-debug-w-GC64:
+ name: Tarantool (Linux/x86_64) Debug GC64:ON
needs: test-luajit
uses: tarantool/tarantool/.github/workflows/luajit-integration.yml@master
with:
@@ -95,8 +108,8 @@ jobs:
buildtype: Debug
host: ubuntu-20.04-self-hosted
revision: ${{ github.sha }}
- test-tarantool-x86_64-release-wo-GC64:
- name: Tarantool x86_64 Release GC64:OFF
+ test-tarantool-linux-x86_64-release-wo-GC64:
+ name: Tarantool (Linux/x86_64) Release GC64:OFF
needs: test-luajit
uses: tarantool/tarantool/.github/workflows/luajit-integration.yml@master
with:
@@ -104,8 +117,8 @@ jobs:
buildtype: RelWithDebInfo
host: ubuntu-20.04-self-hosted
revision: ${{ github.sha }}
- test-tarantool-x86_64-release-w-GC64:
- name: Tarantool x86_64 Release GC64:ON
+ test-tarantool-linux-x86_64-release-w-GC64:
+ name: Tarantool (Linux/x86_64) Release GC64:ON
needs: test-luajit
uses: tarantool/tarantool/.github/workflows/luajit-integration.yml@master
with:
@@ -113,8 +126,8 @@ jobs:
buildtype: RelWithDebInfo
host: ubuntu-20.04-self-hosted
revision: ${{ github.sha }}
- test-tarantool-aarch64-debug-w-GC64:
- name: Tarantool aarch64 Debug GC64:ON
+ test-tarantool-linux-aarch64-debug-w-GC64:
+ name: Tarantool (Linux/aarch64) Debug GC64:ON
needs: test-luajit
uses: tarantool/tarantool/.github/workflows/luajit-integration.yml@master
with:
@@ -122,8 +135,8 @@ jobs:
buildtype: Debug
host: graviton
revision: ${{ github.sha }}
- test-tarantool-aarch64-release-w-GC64:
- name: Tarantool aarch64 Release GC64:ON
+ test-tarantool-linux-aarch64-release-w-GC64:
+ name: Tarantool (Linux/aarch64) Release GC64:ON
needs: test-luajit
uses: tarantool/tarantool/.github/workflows/luajit-integration.yml@master
with:
@@ -131,3 +144,57 @@ jobs:
buildtype: RelWithDebInfo
host: graviton
revision: ${{ github.sha }}
+ test-tarantool-macos-x86_64-debug-wo-GC64:
+ name: Tarantool (macOS/x86_64) Debug GC64:OFF
+ needs: test-luajit
+ uses: tarantool/tarantool/.github/workflows/luajit-integration.yml@master
+ with:
+ GC64: OFF
+ buildtype: Debug
+ host: macos-11
+ revision: ${{ github.sha }}
+ test-tarantool-macos-x86_64-debug-w-GC64:
+ name: Tarantool (macOS/x86_64) Debug GC64:ON
+ needs: test-luajit
+ uses: tarantool/tarantool/.github/workflows/luajit-integration.yml@master
+ with:
+ GC64: ON
+ buildtype: Debug
+ host: macos-11
+ revision: ${{ github.sha }}
+ test-tarantool-macos-x86_64-release-wo-GC64:
+ name: Tarantool (macOS/x86_64) Release GC64:OFF
+ needs: test-luajit
+ uses: tarantool/tarantool/.github/workflows/luajit-integration.yml@master
+ with:
+ GC64: OFF
+ buildtype: RelWithDebInfo
+ host: macos-11
+ revision: ${{ github.sha }}
+ test-tarantool-macos-x86_64-release-w-GC64:
+ name: Tarantool (macOS/x86_64) Release GC64:ON
+ needs: test-luajit
+ uses: tarantool/tarantool/.github/workflows/luajit-integration.yml@master
+ with:
+ GC64: ON
+ buildtype: RelWithDebInfo
+ host: macos-11
+ revision: ${{ github.sha }}
+ test-tarantool-macos-m1-debug-w-GC64:
+ name: Tarantool (macOS/M1) Debug GC64:ON
+ needs: test-luajit
+ uses: tarantool/tarantool/.github/workflows/luajit-integration.yml@master
+ with:
+ GC64: ON
+ buildtype: Debug
+ host: macos-11-m1
+ revision: ${{ github.sha }}
+ test-tarantool-macos-m1-release-w-GC64:
+ name: Tarantool (macOS/M1) Release GC64:ON
+ needs: test-luajit
+ uses: tarantool/tarantool/.github/workflows/luajit-integration.yml@master
+ with:
+ GC64: ON
+ buildtype: RelWithDebInfo
+ host: macos-11-m1
+ revision: ${{ github.sha }}
--
2.34.0
next prev parent reply other threads:[~2022-08-11 11:31 UTC|newest]
Thread overview: 39+ messages / expand[flat|nested] mbox.gz Atom feed top
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 ` Igor Munkin via Tarantool-patches [this message]
2022-08-15 12:27 ` [Tarantool-patches] [PATCH luajit 8/8] ci: merge Linux and macOS workflows 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
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=32fe27e53d288f81debc4acf6fa3624f6de5773f.1660216002.git.imun@tarantool.org \
--to=tarantool-patches@dev.tarantool.org \
--cc=imun@tarantool.org \
--cc=sergeyb@tarantool.org \
--cc=skaplun@tarantool.org \
--subject='Re: [Tarantool-patches] [PATCH luajit 8/8] ci: merge Linux and macOS workflows' \
/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