Skip to content

Commit

Permalink
Merge branch 'develop' into wip/radeusgd/9812-infer-method-calls
Browse files Browse the repository at this point in the history
# Conflicts:
#	distribution/lib/Standard/Base/0.0.0-dev/src/Meta/Enso_Project.enso
#	engine/runtime-integration-tests/src/test/java/org/enso/compiler/test/TypeInferenceTest.java
#	engine/runtime/src/main/java/org/enso/interpreter/runtime/scope/ModuleScope.java
#	engine/runtime/src/main/scala/org/enso/interpreter/runtime/IrToTruffle.scala
  • Loading branch information
radeusgd committed Dec 27, 2024
2 parents 8d060ca + 0c41e8d commit 99f6462
Show file tree
Hide file tree
Showing 2,406 changed files with 76,006 additions and 43,815 deletions.
1 change: 1 addition & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
*.enso text eol=lf
*.png binary
CHANGELOG.md merge=union
10 changes: 8 additions & 2 deletions .github/CODEOWNERS
Validating CODEOWNERS rules …
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,8 @@ tsconfig.json

# GUI/Dashboard
/app @Frizi @farmaazon @vitvakatu @kazcw @AdRiley @PabloBuchu @indiv0 @somebody1234 @MrFlashAccount
/app/gui/e2e/dashboard @PabloBuchu @indiv0 @somebody1234 @MrFlashAccount
/app/gui/e2e/project-view @Frizi @farmaazon @vitvakatu @kazcw @AdRiley
/app/gui/integration-test/dashboard @PabloBuchu @indiv0 @somebody1234 @MrFlashAccount
/app/gui/integration-test/project-view @Frizi @farmaazon @vitvakatu @kazcw @AdRiley
/app/gui/src/dashboard @PabloBuchu @indiv0 @somebody1234 @MrFlashAccount
/app/gui/src/project-view @Frizi @farmaazon @vitvakatu @kazcw @AdRiley
/app/ide-desktop/ @PabloBuchu @indiv0 @somebody1234 @MrFlashAccount
Expand All @@ -59,5 +59,11 @@ tsconfig.json
/test/ @jdunkerley @radeusgd @GregoryTravis @AdRiley @marthasharkey
/tools/http-test-helper/ @radeusgd @jdunkerley @GregoryTravis @AdRiley @marthasharkey

# Licenses
/distribution/engine/
/distribution/launcher/
/distribution/project-manager/
/tools/legal-review/

# The default project template is owned by the libraries team
/lib/scala/pkg/src/main/resources/default/src/ @radeusgd @jdunkerley @GregoryTravis @AdRiley @marthasharkey
3 changes: 3 additions & 0 deletions .github/workflows/bench-upload.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,9 @@ on:
workflows: ["Benchmark Engine", "Benchmark Standard Libraries"]
types:
- completed
# Allow to trigger this workflow manually
workflow_dispatch:

jobs:
upload-benchmarks:
name: Upload benchmarks
Expand Down
55 changes: 55 additions & 0 deletions .github/workflows/engine-changed-files.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,55 @@
# This file is not auto-generated. Feel free to edit it.

name: Engine Changed Files

on:
workflow_call:
outputs:
all_changed_files:
description: "Returns all changed files"
value: ${{ jobs.engine-changed-files.outputs.all_changed_files }}
any_changed:
description: "Returns `true` when any of the filenames have changed"
value: ${{ jobs.engine-changed-files.outputs.any_changed }}

jobs:
engine-changed-files:
runs-on: ubuntu-latest
name: Changed Files
outputs:
all_changed_files: ${{ steps.engine-changed-files.outputs.all_changed_files }}
any_changed: ${{ steps.engine-changed-files.outputs.any_changed }}
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 2
- name: Get changed files
id: engine-changed-files
uses: tj-actions/changed-files@v45
with:
files: |
distribution/**
engine/**
lib/**
project/**
std-bits/**
test/**
build.sbt
.cargo/**
Cargo.lock
Cargo.toml
rust-toolchain.toml
.github/workflows/engine-changed-files.yml
.github/workflows/engine-checks-optional.yml
.github/workflows/engine-checks.yml
.github/workflows/engine-pull-request.yml
- name: List all changed files
env:
ALL_CHANGED_FILES: ${{ steps.engine-changed-files.outputs.all_changed_files }}
run: |
if [[ "${{ steps.engine-changed-files.outputs.any_changed }}" == "true" ]]; then
echo "Files changed:"
fi
for file in ${ALL_CHANGED_FILES}; do
echo "$file"
done
Loading

0 comments on commit 99f6462

Please sign in to comment.