|
| 1 | +name: E2E |
| 2 | +on: |
| 3 | + # Enable manually triggering this workflow via the API or web UI |
| 4 | + workflow_dispatch: |
| 5 | + push: |
| 6 | + branches: |
| 7 | + - main |
| 8 | + pull_request: |
| 9 | + schedule: |
| 10 | + # At 06:00 AM UTC from Monday through Friday |
| 11 | + - cron: '0 6 * * 1-5' |
| 12 | + |
| 13 | +defaults: |
| 14 | + run: |
| 15 | + shell: bash |
| 16 | + |
| 17 | +jobs: |
| 18 | + test: |
| 19 | + strategy: |
| 20 | + matrix: |
| 21 | + go: [stable, tip] |
| 22 | + platform: [ubuntu-latest, windows-latest, macos-latest] |
| 23 | + runs-on: ${{ matrix.platform }} |
| 24 | + steps: |
| 25 | + - name: Checkout code |
| 26 | + if: matrix.go != 'tip' || matrix.platform != 'windows-latest' |
| 27 | + uses: actions/checkout@v4 |
| 28 | + - name: Install Go |
| 29 | + if: matrix.go != 'tip' || matrix.platform != 'windows-latest' |
| 30 | + uses: actions/setup-go@v5 |
| 31 | + with: |
| 32 | + go-version: 1.x |
| 33 | + - name: Install Go tip |
| 34 | + if: matrix.go == 'tip' && matrix.platform != 'windows-latest' |
| 35 | + env: |
| 36 | + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |
| 37 | + run: | |
| 38 | + gh release download ${{ matrix.platform }} --repo grafana/gotip --pattern 'go.zip' |
| 39 | + unzip go.zip -d $HOME/sdk |
| 40 | + echo "GOROOT=$HOME/sdk/gotip" >> "$GITHUB_ENV" |
| 41 | + echo "GOPATH=$HOME/go" >> "$GITHUB_ENV" |
| 42 | + echo "$HOME/go/bin" >> "$GITHUB_PATH" |
| 43 | + echo "$HOME/sdk/gotip/bin" >> "$GITHUB_PATH" |
| 44 | + - name: Build k6 |
| 45 | + if: matrix.go != 'tip' || matrix.platform != 'windows-latest' |
| 46 | + run: | |
| 47 | + which go |
| 48 | + go version |
| 49 | +
|
| 50 | + go build . |
| 51 | + ./k6 version |
| 52 | + - name: Run E2E tests |
| 53 | + if: matrix.go != 'tip' || matrix.platform != 'windows-latest' |
| 54 | + run: | |
| 55 | + set -x |
| 56 | + if [ "$RUNNER_OS" == "Linux" ]; then |
| 57 | + export K6_BROWSER_EXECUTABLE_PATH=/usr/bin/google-chrome |
| 58 | + fi |
| 59 | + export K6_BROWSER_HEADLESS=true |
| 60 | + for f in examples/browser/*.js; do |
| 61 | + if [ "$f" == "examples/browser/hosts.js" ] && [ "$RUNNER_OS" == "Windows" ]; then |
| 62 | + echo "skipping $f on Windows" |
| 63 | + continue |
| 64 | + fi |
| 65 | + ./k6 run -q "$f" |
| 66 | + done |
| 67 | + - name: Check screenshot |
| 68 | + if: matrix.go != 'tip' || matrix.platform != 'windows-latest' |
| 69 | + # TODO: Do something more sophisticated? |
| 70 | + run: test -s screenshot.png |
0 commit comments