-
Notifications
You must be signed in to change notification settings - Fork 326
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'develop' into wip/sb/batch-invalidations
- Loading branch information
Showing
123 changed files
with
2,638 additions
and
795 deletions.
There are no files selected for viewing
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
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
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
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,197 @@ | ||
# This file is auto-generated. Do not edit it manually! | ||
# Edit the enso_build::ci_gen module instead and run `cargo run --package enso-build-ci-gen`. | ||
|
||
name: IDE Packaging (Optional) | ||
on: | ||
workflow_dispatch: | ||
inputs: | ||
clean_build_required: | ||
description: Clean before and after the run. | ||
required: false | ||
type: boolean | ||
default: false | ||
workflow_call: {} | ||
concurrency: | ||
group: ${{ github.workflow }}-${{ github.ref }}-ide-packaging-optional | ||
cancel-in-progress: ${{ github.ref != 'refs/heads/develop' }} | ||
jobs: | ||
enso-build-ci-gen-job-build-backend-macos-amd64: | ||
name: Build Backend (macos, amd64) | ||
runs-on: | ||
- macos-13 | ||
continue-on-error: true | ||
steps: | ||
- if: startsWith(runner.name, 'GitHub Actions') || startsWith(runner.name, 'Hosted Agent') | ||
name: Installing wasm-pack | ||
uses: jetli/[email protected] | ||
with: | ||
version: v0.12.1 | ||
- name: Expose Artifact API and context information. | ||
uses: actions/github-script@v7 | ||
with: | ||
script: "\n core.exportVariable(\"ACTIONS_RUNTIME_TOKEN\", process.env[\"ACTIONS_RUNTIME_TOKEN\"])\n core.exportVariable(\"ACTIONS_RUNTIME_URL\", process.env[\"ACTIONS_RUNTIME_URL\"])\n core.exportVariable(\"GITHUB_RETENTION_DAYS\", process.env[\"GITHUB_RETENTION_DAYS\"])\n console.log(context)\n " | ||
- name: Checking out the repository | ||
uses: actions/checkout@v4 | ||
with: | ||
clean: false | ||
submodules: recursive | ||
- name: Build Script Setup | ||
run: ./run --help || (git clean -ffdx && ./run --help) | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
- if: "(contains(github.event.pull_request.labels.*.name, 'CI: Clean build required') || inputs.clean_build_required)" | ||
name: Clean before | ||
run: ./run git-clean | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
- run: ./run backend get | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
- if: failure() && runner.os == 'Windows' | ||
name: List files if failed (Windows) | ||
run: Get-ChildItem -Force -Recurse | ||
- if: failure() && runner.os != 'Windows' | ||
name: List files if failed (non-Windows) | ||
run: ls -lAR | ||
- if: "(always()) && (contains(github.event.pull_request.labels.*.name, 'CI: Clean build required') || inputs.clean_build_required)" | ||
name: Clean after | ||
run: ./run git-clean | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
enso-build-ci-gen-job-gui-build-macos-amd64: | ||
name: GUI build (macos, amd64) | ||
runs-on: | ||
- macos-13 | ||
continue-on-error: true | ||
steps: | ||
- if: startsWith(runner.name, 'GitHub Actions') || startsWith(runner.name, 'Hosted Agent') | ||
name: Installing wasm-pack | ||
uses: jetli/[email protected] | ||
with: | ||
version: v0.12.1 | ||
- name: Expose Artifact API and context information. | ||
uses: actions/github-script@v7 | ||
with: | ||
script: "\n core.exportVariable(\"ACTIONS_RUNTIME_TOKEN\", process.env[\"ACTIONS_RUNTIME_TOKEN\"])\n core.exportVariable(\"ACTIONS_RUNTIME_URL\", process.env[\"ACTIONS_RUNTIME_URL\"])\n core.exportVariable(\"GITHUB_RETENTION_DAYS\", process.env[\"GITHUB_RETENTION_DAYS\"])\n console.log(context)\n " | ||
- name: Checking out the repository | ||
uses: actions/checkout@v4 | ||
with: | ||
clean: false | ||
submodules: recursive | ||
- name: Build Script Setup | ||
run: ./run --help || (git clean -ffdx && ./run --help) | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
- if: "(contains(github.event.pull_request.labels.*.name, 'CI: Clean build required') || inputs.clean_build_required)" | ||
name: Clean before | ||
run: ./run git-clean | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
- run: ./run gui build | ||
env: | ||
ENSO_CLOUD_API_URL: ${{ vars.ENSO_CLOUD_API_URL }} | ||
ENSO_CLOUD_CHAT_URL: ${{ vars.ENSO_CLOUD_CHAT_URL }} | ||
ENSO_CLOUD_COGNITO_DOMAIN: ${{ vars.ENSO_CLOUD_COGNITO_DOMAIN }} | ||
ENSO_CLOUD_COGNITO_REGION: ${{ vars.ENSO_CLOUD_COGNITO_REGION }} | ||
ENSO_CLOUD_COGNITO_USER_POOL_ID: ${{ vars.ENSO_CLOUD_COGNITO_USER_POOL_ID }} | ||
ENSO_CLOUD_COGNITO_USER_POOL_WEB_CLIENT_ID: ${{ vars.ENSO_CLOUD_COGNITO_USER_POOL_WEB_CLIENT_ID }} | ||
ENSO_CLOUD_ENVIRONMENT: ${{ vars.ENSO_CLOUD_ENVIRONMENT }} | ||
ENSO_CLOUD_GOOGLE_ANALYTICS_TAG: ${{ vars.ENSO_CLOUD_GOOGLE_ANALYTICS_TAG }} | ||
ENSO_CLOUD_SENTRY_DSN: ${{ vars.ENSO_CLOUD_SENTRY_DSN }} | ||
ENSO_CLOUD_STRIPE_KEY: ${{ vars.ENSO_CLOUD_STRIPE_KEY }} | ||
ENSO_IDE_AG_GRID_LICENSE_KEY: ${{ vars.ENSO_AG_GRID_LICENSE_KEY }} | ||
ENSO_IDE_MAPBOX_API_TOKEN: ${{ vars.ENSO_MAPBOX_API_TOKEN }} | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
- if: failure() && runner.os == 'Windows' | ||
name: List files if failed (Windows) | ||
run: Get-ChildItem -Force -Recurse | ||
- if: failure() && runner.os != 'Windows' | ||
name: List files if failed (non-Windows) | ||
run: ls -lAR | ||
- if: "(always()) && (contains(github.event.pull_request.labels.*.name, 'CI: Clean build required') || inputs.clean_build_required)" | ||
name: Clean after | ||
run: ./run git-clean | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
enso-build-ci-gen-job-package-ide-macos-amd64: | ||
name: Package New IDE (macos, amd64) | ||
needs: | ||
- enso-build-ci-gen-job-build-backend-macos-amd64 | ||
runs-on: | ||
- macos-13 | ||
continue-on-error: true | ||
steps: | ||
- if: startsWith(runner.name, 'GitHub Actions') || startsWith(runner.name, 'Hosted Agent') | ||
name: Installing wasm-pack | ||
uses: jetli/[email protected] | ||
with: | ||
version: v0.12.1 | ||
- name: Expose Artifact API and context information. | ||
uses: actions/github-script@v7 | ||
with: | ||
script: "\n core.exportVariable(\"ACTIONS_RUNTIME_TOKEN\", process.env[\"ACTIONS_RUNTIME_TOKEN\"])\n core.exportVariable(\"ACTIONS_RUNTIME_URL\", process.env[\"ACTIONS_RUNTIME_URL\"])\n core.exportVariable(\"GITHUB_RETENTION_DAYS\", process.env[\"GITHUB_RETENTION_DAYS\"])\n console.log(context)\n " | ||
- name: Checking out the repository | ||
uses: actions/checkout@v4 | ||
with: | ||
clean: false | ||
submodules: recursive | ||
- name: Build Script Setup | ||
run: ./run --help || (git clean -ffdx && ./run --help) | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
- if: "(contains(github.event.pull_request.labels.*.name, 'CI: Clean build required') || inputs.clean_build_required)" | ||
name: Clean before | ||
run: ./run git-clean | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
- run: ./run ide build --backend-source current-ci-run --gui-upload-artifact false | ||
env: | ||
APPLEID: ${{ secrets.APPLE_NOTARIZATION_USERNAME }} | ||
APPLEIDPASS: ${{ secrets.APPLE_NOTARIZATION_PASSWORD }} | ||
APPLETEAMID: ${{ secrets.APPLE_NOTARIZATION_TEAM_ID }} | ||
CSC_FOR_PULL_REQUEST: "true" | ||
CSC_IDENTITY_AUTO_DISCOVERY: "true" | ||
CSC_KEY_PASSWORD: ${{ secrets.APPLE_CODE_SIGNING_CERT_PASSWORD }} | ||
CSC_LINK: ${{ secrets.APPLE_CODE_SIGNING_CERT }} | ||
ENSO_CLOUD_API_URL: ${{ vars.ENSO_CLOUD_API_URL }} | ||
ENSO_CLOUD_CHAT_URL: ${{ vars.ENSO_CLOUD_CHAT_URL }} | ||
ENSO_CLOUD_COGNITO_DOMAIN: ${{ vars.ENSO_CLOUD_COGNITO_DOMAIN }} | ||
ENSO_CLOUD_COGNITO_REGION: ${{ vars.ENSO_CLOUD_COGNITO_REGION }} | ||
ENSO_CLOUD_COGNITO_USER_POOL_ID: ${{ vars.ENSO_CLOUD_COGNITO_USER_POOL_ID }} | ||
ENSO_CLOUD_COGNITO_USER_POOL_WEB_CLIENT_ID: ${{ vars.ENSO_CLOUD_COGNITO_USER_POOL_WEB_CLIENT_ID }} | ||
ENSO_CLOUD_ENVIRONMENT: ${{ vars.ENSO_CLOUD_ENVIRONMENT }} | ||
ENSO_CLOUD_GOOGLE_ANALYTICS_TAG: ${{ vars.ENSO_CLOUD_GOOGLE_ANALYTICS_TAG }} | ||
ENSO_CLOUD_SENTRY_DSN: ${{ vars.ENSO_CLOUD_SENTRY_DSN }} | ||
ENSO_CLOUD_STRIPE_KEY: ${{ vars.ENSO_CLOUD_STRIPE_KEY }} | ||
ENSO_IDE_AG_GRID_LICENSE_KEY: ${{ vars.ENSO_AG_GRID_LICENSE_KEY }} | ||
ENSO_IDE_MAPBOX_API_TOKEN: ${{ vars.ENSO_MAPBOX_API_TOKEN }} | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
- run: corepack pnpm -r --filter enso exec playwright test --timeout 300000 | ||
env: | ||
DEBUG: "pw:browser log:" | ||
ENSO_TEST_USER: ${{ secrets.ENSO_CLOUD_TEST_ACCOUNT_USERNAME }} | ||
ENSO_TEST_USER_PASSWORD: ${{ secrets.ENSO_CLOUD_TEST_ACCOUNT_PASSWORD }} | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
- if: failure() | ||
name: Upload Test Traces | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
compression-level: 0 | ||
name: test-traces-macos-amd64 | ||
path: app/ide-desktop/client/test-traces | ||
- run: rm $HOME/.enso/credentials | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
- if: failure() && runner.os == 'Windows' | ||
name: List files if failed (Windows) | ||
run: Get-ChildItem -Force -Recurse | ||
- if: failure() && runner.os != 'Windows' | ||
name: List files if failed (non-Windows) | ||
run: ls -lAR | ||
- if: "(always()) && (contains(github.event.pull_request.labels.*.name, 'CI: Clean build required') || inputs.clean_build_required)" | ||
name: Clean after | ||
run: ./run git-clean | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
env: | ||
ENSO_BUILD_SKIP_VERSION_CHECK: "true" |
Oops, something went wrong.