File tree Expand file tree Collapse file tree 1 file changed +10
-3
lines changed
Expand file tree Collapse file tree 1 file changed +10
-3
lines changed Original file line number Diff line number Diff line change 2323 runs-on : ${{ matrix.runner }}
2424 steps :
2525 # Checks-out the repository under $GITHUB_WORKSPACE.
26- - uses : actions/checkout@v4
26+ - uses : actions/checkout@v6
27+ - name : Install libreadline on linux
28+ run : |
29+ if [ "$RUNNER_OS" == "Linux" ]; then
30+ sudo apt-get install -y libreadline-dev
31+ fi
32+ shell : bash
33+
2734 - name : Install Lua (${{ matrix.lua }})
2835 run : |
2936 pip install git+https://github.com/luarocks/hererocks
@@ -50,10 +57,10 @@ jobs:
5057 runs-on : windows-2022
5158 steps :
5259 # Checks-out the repository under $GITHUB_WORKSPACE.
53- - uses : actions/checkout@v4
60+ - uses : actions/checkout@v6
5461 - name : Install Lua (${{ matrix.lua }})
5562 run : |
56- pip install git+https://github.com/luarocks/ hererocks
63+ pip install hererocks
5764 hererocks lua_install -r@28f9d98 --${{ matrix.lua }} --target ${{ matrix.target }}
5865 - name : Build lua-simdjson
5966 run : |
You can’t perform that action at this time.
0 commit comments