Bump deps/luajit from faaf663 to 4886b67
#146
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Run Valkey tests with luajit | |
| on: | |
| workflow_dispatch: | |
| push: | |
| branches: [ master ] | |
| pull_request: | |
| branches: [ master ] | |
| jobs: | |
| tests: | |
| name: ${{ matrix.server_version }} | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| server_version: ["unstable", "9.1"] | |
| runs-on: ubuntu-24.04 | |
| steps: | |
| - name: Check out code | |
| uses: actions/checkout@v7.0.1 | |
| - name: Update submodule | |
| run: git submodule update --init --recursive | |
| - name: Get deps | |
| run: sudo apt-get install pkg-config tcl8.6 tclx cmake libssl-dev | |
| - name: Clean | |
| run: ./build.sh --clean | |
| - name: Build | |
| env: | |
| SERVER_VERSION: ${{ matrix.server_version }} | |
| run: ./build.sh --with-tests | |
| - name: Run tests | |
| run: ./tests/run-valkey-tests.sh --skiptest "Process title set as expected" --verbose --dump-logs |