Pass environment variables to the engine in startup tests (#535) #1253
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: build_test | |
| on: | |
| push: | |
| branches: [ main ] | |
| pull_request: | |
| branches: [ main ] | |
| jobs: | |
| build_test: | |
| timeout-minutes: 30 | |
| strategy: | |
| # If macos-latest fails, we still don't want to cancel ubuntu-latest or the other way around. | |
| fail-fast: false | |
| matrix: | |
| os: [macos-latest, ubuntu-latest] | |
| kind: [debug] | |
| include: | |
| # On linux also build and test release. | |
| - os: ubuntu-latest | |
| kind: release | |
| runs-on: ${{ matrix.os }} | |
| steps: | |
| - uses: actions/setup-node@v4 | |
| with: | |
| node-version: 25-nightly | |
| - uses: swift-actions/setup-swift@v2 | |
| with: | |
| swift-version: "6.0.3" | |
| - name: Swift Version | |
| run: swift --version | |
| - uses: actions/checkout@v2 | |
| - name: Build | |
| run: swift build -c ${{ matrix.kind }} -v | |
| - name: Install protobuf | |
| # Install protoc so the presubmit can also validate the generated *.pb.swift files. | |
| if: ${{ matrix.os == 'ubuntu-latest' && matrix.kind == 'debug' }} | |
| run: sudo apt install -y protobuf-compiler | |
| - name: Run presubmit checks | |
| if: ${{ matrix.os == 'ubuntu-latest' && matrix.kind == 'debug' }} | |
| run: python3 Tools/presubmit.py | |
| - name: Run tests with Node.js | |
| run: swift test -c ${{ matrix.kind }} -v | |
| - name: Install jsvu | |
| run: npm install jsvu -g | |
| - name: Install d8 | |
| run: jsvu --os=default --engines=v8 | |
| - name: Run tests with d8 | |
| run: FUZZILLI_TEST_SHELL=~/.jsvu/engines/v8/v8 swift test -c ${{ matrix.kind }} -v |