File tree Expand file tree Collapse file tree 3 files changed +6
-6
lines changed
plugins/expressions-converter/src/org/jetbrains/kotlinx/dataframe Expand file tree Collapse file tree 3 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -20,13 +20,13 @@ jobs:
20
20
java-version : ' 11'
21
21
22
22
- name : Run Gradle task
23
- run : ./gradlew :core:processKDocsMain
23
+ run : ./gradlew :core:processKDocsMain korro
24
24
25
25
- name : Commit changes
26
26
run : |
27
27
git config --global user.name 'github-actions[bot]'
28
28
git config --global user.email 'github-actions[bot]@users.noreply.github.com'
29
- git add ./core/generated-sources
29
+ git add ' ./core/generated-sources' './docs/StardustDocs/snippets' './docs/StardustDocs/topics'
30
30
git diff --staged --quiet || git commit -m "Automated commit of generated code"
31
31
git push
32
32
env :
Original file line number Diff line number Diff line change @@ -35,18 +35,18 @@ jobs:
35
35
git config --global user.name "GitHub Actions"
36
36
37
37
- name : Run Gradle task
38
- run : ./gradlew :core:processKDocsMain
38
+ run : ./gradlew :core:processKDocsMain korro
39
39
40
40
- name : Check for changes in generated sources
41
41
id : git-diff
42
- run : echo "::set-output name=changed::$(if git diff --quiet './core/generated-sources'; then echo 'false'; else echo 'true'; fi)"
42
+ run : echo "::set-output name=changed::$(if git diff --quiet './core/generated-sources' './docs/StardustDocs/snippets' './docs/StardustDocs/topics' ; then echo 'false'; else echo 'true'; fi)"
43
43
44
44
- name : Commit and push if changes
45
45
id : git-commit
46
46
if : steps.git-diff.outputs.changed == 'true'
47
47
run : |
48
48
git checkout -b generated-sources/docs-update-${{ github.run_number }}
49
- git add './core/generated-sources'
49
+ git add './core/generated-sources' './docs/StardustDocs/snippets' './docs/StardustDocs/topics'
50
50
git commit -m "Update generated sources with recent changes"
51
51
git push origin generated-sources/docs-update-${{ github.run_number }}
52
52
echo "::set-output name=commit::$(git rev-parse HEAD)"
Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ import org.jetbrains.kotlin.config.CompilerConfiguration
8
8
@OptIn(ExperimentalCompilerApi ::class )
9
9
class ExplainerComponentRegistrar : CompilerPluginRegistrar () {
10
10
override val supportsK2: Boolean
11
- get() = false
11
+ get() = true
12
12
13
13
override fun ExtensionStorage.registerExtensions (configuration : CompilerConfiguration ) {
14
14
IrGenerationExtension .registerExtension(ExplainerIrGenerationExtension ())
You can’t perform that action at this time.
0 commit comments