cgen: use final_sym for elem_sym in index_of_array #7273
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: More extensive but slower tests | |
| on: | |
| push: | |
| paths-ignore: | |
| - '**.md' | |
| - '**.yml' | |
| - '!**/more_extensive_but_slower_tests_ci.yml' | |
| - 'examples/**' | |
| - 'cmd/tools/**' | |
| pull_request: | |
| paths-ignore: | |
| - '**.md' | |
| - '**.yml' | |
| - '!**/more_extensive_but_slower_tests_ci.yml' | |
| - 'examples/**' | |
| - 'cmd/tools/**' | |
| concurrency: | |
| group: slower_tests-${{ github.workflow }}-${{ github.ref == 'refs/heads/master' && github.sha || github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| more-tests: | |
| strategy: | |
| matrix: | |
| os: [ubuntu-latest, macos-14, windows-latest] | |
| runs-on: ${{ matrix.os }} | |
| timeout-minutes: 20 | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Build V | |
| if: runner.os != 'Windows' | |
| run: make -j4 && ./v symlink | |
| - name: Build V (Windows) | |
| if: runner.os == 'Windows' | |
| run: ./make.bat && ./v symlink | |
| - name: Run additional crypto tests | |
| run: | | |
| v retry -- git clone --depth 1 https://github.com/vlang/slower_tests | |
| v test slower_tests/ |