diff --git a/.github/workflows/engine-pull-request.yml b/.github/workflows/engine-pull-request.yml index 47b2d7adf5f2..7231da64327d 100644 --- a/.github/workflows/engine-pull-request.yml +++ b/.github/workflows/engine-pull-request.yml @@ -36,7 +36,7 @@ jobs: secrets: inherit required-checks: - name: Required Checks + name: Engine Required Checks runs-on: ubuntu-latest needs: [engine-checks] if: always() diff --git a/.github/workflows/gui-pull-request.yml b/.github/workflows/gui-pull-request.yml index f360b23be5e5..56040e07291f 100644 --- a/.github/workflows/gui-pull-request.yml +++ b/.github/workflows/gui-pull-request.yml @@ -79,7 +79,7 @@ jobs: secrets: inherit required-checks: - name: Required Checks + name: GUI Required Checks runs-on: ubuntu-latest needs: [prettier, gui-checks, storybook] if: always() diff --git a/.github/workflows/gui-packaging-optional.yml b/.github/workflows/ide-packaging-optional.yml similarity index 99% rename from .github/workflows/gui-packaging-optional.yml rename to .github/workflows/ide-packaging-optional.yml index 4f5ab0bfd79a..300955745908 100644 --- a/.github/workflows/gui-packaging-optional.yml +++ b/.github/workflows/ide-packaging-optional.yml @@ -1,7 +1,7 @@ # 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: GUI Packaging (Optional) +name: IDE Packaging (Optional) on: workflow_dispatch: inputs: @@ -12,7 +12,7 @@ on: default: false workflow_call: {} concurrency: - group: ${{ github.workflow }}-${{ github.ref }}-gui-packaging-optional + 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: diff --git a/.github/workflows/gui-packaging.yml b/.github/workflows/ide-packaging.yml similarity index 99% rename from .github/workflows/gui-packaging.yml rename to .github/workflows/ide-packaging.yml index 52fcced5cb4e..b6a94a5150d8 100644 --- a/.github/workflows/gui-packaging.yml +++ b/.github/workflows/ide-packaging.yml @@ -1,7 +1,7 @@ # 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: GUI Packaging +name: IDE Packaging on: workflow_dispatch: inputs: @@ -12,7 +12,7 @@ on: default: false workflow_call: {} concurrency: - group: ${{ github.workflow }}-${{ github.ref }}-gui-packaging + group: ${{ github.workflow }}-${{ github.ref }}-ide-packaging cancel-in-progress: ${{ github.ref != 'refs/heads/develop' }} jobs: enso-build-ci-gen-job-build-backend-linux-amd64: diff --git a/.github/workflows/gui-packaging-pull-request.yml b/.github/workflows/ide-pull-request.yml similarity index 73% rename from .github/workflows/gui-packaging-pull-request.yml rename to .github/workflows/ide-pull-request.yml index f38628a231fe..f21d23266998 100644 --- a/.github/workflows/gui-packaging-pull-request.yml +++ b/.github/workflows/ide-pull-request.yml @@ -1,6 +1,6 @@ # This file is not auto-generated. Feel free to edit it. -name: ✨ GUI Packaging +name: ✨ IDE on: push: @@ -9,7 +9,7 @@ on: pull_request: concurrency: - group: ${{ github.workflow }}-${{ github.ref }}-gui-packaging-pull-request + group: ${{ github.workflow }}-${{ github.ref }}-ide-pull-request cancel-in-progress: ${{ github.ref != 'refs/heads/develop' }} jobs: @@ -23,31 +23,31 @@ jobs: uses: ./.github/workflows/engine-changed-files.yml secrets: inherit - gui-packaging: + ide-packaging: name: 📦 Package - uses: ./.github/workflows/gui-packaging.yml + uses: ./.github/workflows/ide-packaging.yml needs: [gui-changed-files, engine-changed-files] if: needs.gui-changed-files.outputs.any_changed == 'true' || needs.engine-changed-files.outputs.any_changed == 'true' || github.ref == 'refs/heads/develop' secrets: inherit - gui-packaging-optional: + ide-packaging-optional: name: 📦 Package (Optional) - uses: ./.github/workflows/gui-packaging-optional.yml + uses: ./.github/workflows/ide-packaging-optional.yml needs: [gui-changed-files, engine-changed-files] if: needs.gui-changed-files.outputs.any_changed == 'true' || needs.engine-changed-files.outputs.any_changed == 'true' || github.ref == 'refs/heads/develop' secrets: inherit required-checks: - name: Required Checks + name: IDE Required Checks runs-on: ubuntu-latest - needs: [gui-packaging] + needs: [ide-packaging] if: always() steps: - name: Checks Summary run: | - echo "GUI Packaging: ${{ needs.gui-packaging.result }}" + echo "IDE: ${{ needs.ide-packaging.result }}" - if [[ "${{ needs.gui-packaging.result }}" == "failure" ]]; then + if [[ "${{ needs.ide-packaging.result }}" == "failure" ]]; then exit 1 fi diff --git a/.github/workflows/wasm-pull-request.yml b/.github/workflows/wasm-pull-request.yml index 18a9c6d48a1d..2f0a22b8443b 100644 --- a/.github/workflows/wasm-pull-request.yml +++ b/.github/workflows/wasm-pull-request.yml @@ -26,7 +26,7 @@ jobs: secrets: inherit required-checks: - name: Required Checks + name: WASM Required Checks runs-on: ubuntu-latest needs: [wasm-checks] if: always() diff --git a/build/build/paths.yaml b/build/build/paths.yaml index 288c22dd6efa..f5539e706ce8 100644 --- a/build/build/paths.yaml +++ b/build/build/paths.yaml @@ -11,8 +11,8 @@ engine-checks-optional.yml: engine-checks.yml: extra-nightly-tests.yml: - gui-packaging-optional.yml: - gui-packaging.yml: + ide-packaging-optional.yml: + ide-packaging.yml: nightly.yml: promote.yml: release.yml: diff --git a/build/build/src/ci_gen.rs b/build/build/src/ci_gen.rs index 6163c84baf54..f6f831b9e503 100644 --- a/build/build/src/ci_gen.rs +++ b/build/build/src/ci_gen.rs @@ -687,15 +687,15 @@ pub fn typical_check_triggers() -> Event { } } -pub fn gui_packaging() -> Result { +pub fn ide_packaging() -> Result { let on = Event { workflow_dispatch: Some(manual_workflow_dispatch()), workflow_call: Some(default()), ..default() }; let mut workflow = Workflow { - name: "GUI Packaging".into(), - concurrency: Some(concurrency("gui-packaging")), + name: "IDE Packaging".into(), + concurrency: Some(concurrency("ide-packaging")), on, ..default() }; @@ -710,15 +710,15 @@ pub fn gui_packaging() -> Result { Ok(workflow) } -pub fn gui_packaging_optional() -> Result { +pub fn ide_packaging_optional() -> Result { let on = Event { workflow_dispatch: Some(manual_workflow_dispatch()), workflow_call: Some(default()), ..default() }; let mut workflow = Workflow { - name: "GUI Packaging (Optional)".into(), - concurrency: Some(concurrency("gui-packaging-optional")), + name: "IDE Packaging (Optional)".into(), + concurrency: Some(concurrency("ide-packaging-optional")), on, ..default() }; @@ -906,8 +906,8 @@ pub fn generate( (repo_root.engine_checks_optional_yml.to_path_buf(), engine_checks_optional()?), (repo_root.engine_checks_nightly_yml.to_path_buf(), engine_checks_nightly()?), (repo_root.extra_nightly_tests_yml.to_path_buf(), extra_nightly_tests()?), - (repo_root.gui_packaging_yml.to_path_buf(), gui_packaging()?), - (repo_root.gui_packaging_optional_yml.to_path_buf(), gui_packaging_optional()?), + (repo_root.ide_packaging_yml.to_path_buf(), ide_packaging()?), + (repo_root.ide_packaging_optional_yml.to_path_buf(), ide_packaging_optional()?), (repo_root.wasm_checks_yml.to_path_buf(), wasm_checks()?), (repo_root.engine_benchmark_yml.to_path_buf(), engine_benchmark()?), (repo_root.std_libs_benchmark_yml.to_path_buf(), std_libs_benchmark()?),