Skip to content

Commit f63a835

Browse files
committed
setup docker (+1 squashed commit)
Squashed commits: [a2af7f4] add nx with dte
1 parent a2af7f4 commit f63a835

File tree

6 files changed

+160
-408
lines changed

6 files changed

+160
-408
lines changed

.github/actions/build/action.yml

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,15 @@ runs:
6868
COMMERCIAL_REPO_PASSWORD: ${{ inputs.commercial-repository-password }}
6969
COMMERCIAL_REPO_USERNAME: ${{ inputs.commercial-repository-username }}
7070
COMMERCIAL_SNAPSHOT_REPO_URL: ${{ inputs.commercial-snapshot-repository-url }}
71-
run: NX_BATCH_MODE=true NX_CLOUD_DEREFERENCE_SYMLINKS=true NX_VERBOSE_LOGGING=true NX_PERF_LOGGING=true NX_CLOUD_NO_TIMEOUTS=true NX_CLOUD_VERBOSE_LOGGING=true npx nx run-many -t build-ci --parallel=32 --batch --outputStyle=stream
71+
run: |
72+
export NX_BATCH_MODE=true
73+
export NX_CLOUD_DEREFERENCE_SYMLINKS=true
74+
export NX_VERBOSE_LOGGING=true
75+
export NX_PERF_LOGGING=true
76+
export NX_CLOUD_NO_TIMEOUTS=true
77+
export NX_CLOUD_VERBOSE_LOGGING=true
78+
npx nx show projects
79+
npx nx run-many -t build-ci --parallel=32 --batch --outputStyle=stream
7280
# - name: Publish
7381
# id: publish
7482
# if: ${{ inputs.publish == 'true' }}

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,4 +47,5 @@ node_modules
4747
.nx/workspace-data
4848

4949
.specstory/**
50-
.cursorindexingignore
50+
.cursorindexingignore
51+
.claude

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
plugins {
2-
id "dev.nx.gradle.project-graph" version "0.1.2"
2+
id "dev.nx.gradle.project-graph" version "0.0.1-alpha.7"
33
id "base"
44
id "org.jetbrains.kotlin.jvm" apply false // https://youtrack.jetbrains.com/issue/KT-30276
55
}

nx.json

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,16 @@
4040
}
4141
}
4242
},
43-
"bustCache": 101,
43+
"bustCache": 103,
4444
"nxCloudUrl": "https://staging.nx.app",
45-
"nxCloudId": "67a56832eb5d9093e3ebe776"
45+
"nxCloudId": "67a56832eb5d9093e3ebe776",
46+
"useNativeTaskHasher": false,
47+
"taskRunnerOptions": {
48+
"default": {
49+
"runner": "@nx/workspace/tasks-runners/default",
50+
"options": {
51+
"useNativeTaskHasher": false
52+
}
53+
}
54+
}
4655
}

0 commit comments

Comments
 (0)