ensure we set executable filemode on bash scripts we ship #300
Workflow file for this run
This file contains 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: e2e | |
on: | |
push: | |
branches: | |
- main | |
paths-ignore: | |
- '*.md' | |
- '*.asciidoc' | |
- 'docs/**' | |
pull_request: | |
paths-ignore: | |
- '*.md' | |
- '*.asciidoc' | |
- 'docs/**' | |
permissions: | |
contents: read | |
id-token: write | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: ${{ github.ref != 'refs/heads/main' }} | |
env: | |
# (keep_serverless-staging-oblt, keep_serverless-qa-oblt or serverless-production-oblt) | |
SERVERLESS_PROJECT: serverless-production-oblt | |
# NOTE: if you add a new job and it's a mandatory check then | |
# update e2e-docs.yml | |
jobs: | |
test: | |
# If no PR event or if a PR event that's caused by a non-fork and non dependabot actor | |
if: github.event_name != 'pull_request' || ( github.event_name == 'pull_request' && github.event.pull_request.head.repo.fork == false && github.actor != 'dependabot[bot]' ) | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Bootstrap Action Workspace | |
id: bootstrap | |
uses: ./.github/workflows/bootstrap | |
- uses: elastic/oblt-actions/google/[email protected] | |
- uses: elastic/oblt-actions/oblt-cli/[email protected] | |
with: | |
github-token: ${{ secrets.OBLT_CLI_GITHUB_TOKEN }} | |
cluster-name: ${{ env.SERVERLESS_PROJECT }} | |
- uses: google-github-actions/get-secretmanager-secrets@dc4a1392bad0fd60aee00bb2097e30ef07a1caae # v2.1.3 | |
with: | |
export_to_environment: true | |
secrets: |- | |
E2E__BROWSEREMAIL:elastic-observability/elastic-cloud-observability-team-pro-username | |
E2E__BROWSERPASSWORD:elastic-observability/elastic-cloud-observability-team-pro-password | |
- name: End-to-end tests | |
run: ./build.sh test --test-suite=e2e | |
env: | |
E2E__ENDPOINT: "${{env.ELASTIC_APM_SERVER_URL}}" | |
E2E__AUTHORIZATION: "Authorization=ApiKey ${{env.ELASTIC_APM_API_KEY}}" | |
- name: Upload Playwright traces | |
uses: actions/upload-artifact@v4 | |
if: always() | |
with: | |
name: playwright-traces | |
path: .artifacts/playwright-traces/*-screenshot.jpeg | |
retention-days: 1 |