| # Licensed to the Apache Software Foundation (ASF) under one or more |
| # contributor license agreements. See the NOTICE file distributed with |
| # this work for additional information regarding copyright ownership. |
| # The ASF licenses this file to You under the Apache License, Version 2.0 |
| # (the "License"); you may not use this file except in compliance with |
| # the License. You may obtain a copy of the License at |
| # |
| # http://www.apache.org/licenses/LICENSE-2.0 |
| # |
| # Unless required by applicable law or agreed to in writing, software |
| # distributed under the License is distributed on an "AS IS" BASIS, |
| # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| # See the License for the specific language governing permissions and |
| # limitations under the License. |
| |
| name: run-e2e-tests |
| |
| on: |
| pull_request: |
| |
| jobs: |
| build-and-push-to-docker: |
| runs-on: ubuntu-latest |
| steps: |
| - name: Checkout |
| uses: actions/checkout@v4 |
| |
| - name: Set up Docker Buildx |
| uses: docker/setup-buildx-action@v1 |
| |
| - name: Cache Docker layers |
| uses: actions/cache@v2 |
| with: |
| path: /tmp/.buildx-cache |
| key: ${{ runner.os }}-buildx-${{ github.sha }} |
| restore-keys: | |
| ${{ runner.os }}-buildx- |
| |
| - name: Set up Go 1.21 |
| uses: actions/setup-go@v3 |
| with: |
| go-version: '1.21' |
| |
| - name: Set up JDK 17 |
| uses: actions/setup-java@v4 |
| with: |
| distribution: 'temurin' |
| java-version: '17' |
| cache: 'maven' |
| |
| - name: Build with Maven |
| run: mvn clean install |
| |
| - name: Build Docker image |
| run: | |
| docker build -t streampipes_pipeline-elements-all-jvm:release-validation ./streampipes-extensions/streampipes-extensions-all-jvm |
| docker build -t streampipes_backend:release-validation ./streampipes-service-core |
| |
| - name: Start streampipes |
| run: docker compose -f ./streampipes-client-e2e/docker-compose.yml -p streampipes-client-e2e up -d |
| |
| - name: Start go client test |
| run: | |
| cd ./streampipes-client-e2e/tool |
| chmod +x ./start-streampipes-client-e2e.sh |
| ./start-streampipes-client-e2e.sh -t go-client-e2e.sh |