deps: upgrade to latest lux dependencies #83
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
| # Copyright (C) 2023-2025, Lux Partners Limited. All rights reserved. | |
| # See the file LICENSE for licensing terms. | |
| name: TokenVM Load Tests | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| jobs: | |
| tests: | |
| runs-on: | |
| labels: ubuntu-latest-16-cores | |
| timeout-minutes: 30 | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v3 | |
| - name: Install fio | |
| run: sudo apt-get -y install fio | |
| - name: Run disk tests | |
| working-directory: ./examples/tokenvm | |
| shell: bash | |
| run: scripts/tests.disk.sh | |
| - name: Set up Go | |
| uses: actions/setup-go@v3 | |
| with: | |
| go-version: "1.25.5" | |
| check-latest: true | |
| - name: Run load tests | |
| working-directory: ./examples/tokenvm | |
| shell: bash | |
| run: scripts/tests.load.sh | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | |
| cancel-in-progress: true |