Skip to content

Commit 5c582c9

Browse files
committed
try 0.0.1-alpha.9 and bust cache
1 parent f1b4b8a commit 5c582c9

File tree

3 files changed

+14
-14
lines changed

3 files changed

+14
-14
lines changed

.github/actions/build/action.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -50,9 +50,9 @@ outputs:
5050
runs:
5151
using: composite
5252
steps:
53-
- name: nx show project spring-boot-loader
54-
shell: bash
55-
run: npx nx show project spring-boot-loader --json --verbose
53+
#- name: nx show project spring-boot-loader
54+
#shell: bash
55+
#run: npx nx show project spring-boot-loader --json --verbose
5656
- name: Prepare Gradle Build
5757
uses: ./.github/actions/prepare-gradle-build
5858
with:
@@ -62,9 +62,9 @@ runs:
6262
java-early-access: ${{ inputs.java-early-access }}
6363
java-toolchain: ${{ inputs.java-toolchain }}
6464
java-version: ${{ inputs.java-version }}
65-
- name: remove project graph
66-
shell: bash
67-
run: rm -f .nx/workspace-data/project-graph.json
65+
#- name: remove project graph
66+
#shell: bash
67+
#run: rm -f .nx/workspace-data/project-graph.json
6868
- name: Build
6969
id: build
7070
if: ${{ inputs.publish == 'false' }}

.github/workflows/build-pull-request.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ jobs:
99
steps:
1010
- name: Check Out Code
1111
uses: actions/checkout@v4
12-
- name: Remove gradle cache folder
13-
run: rm -rf ~/.gradle/caches
12+
# - name: Remove gradle cache folder
13+
# run: rm -rf ~/.gradle/caches
1414

1515
- name: Use Node.js
1616
uses: actions/setup-node@v4
@@ -20,18 +20,18 @@ jobs:
2020
cache: npm
2121
- run: npm install
2222

23-
- run: npx nx reset
24-
- run: rm -f .nx/workspace-data/project-graph.json
25-
- run: ./gradlew nxProjectGraph -PciTestTargetName=ci --info --rerun-tasks --no-build-cache
26-
- run: npx nx show project spring-boot-loader --json --verbose
23+
# - run: npx nx reset
24+
# - run: rm -f .nx/workspace-data/project-graph.json
25+
# - run: ./gradlew nxProjectGraph -PciTestTargetName=ci --info --rerun-tasks --no-build-cache
26+
# - run: npx nx show project spring-boot-loader --json --verbose
2727

2828
# This enables task distribution via Nx Cloud
2929
# Run this command as early as possible, before dependencies are installed
3030
# Learn more at https://nx.dev/ci/reference/nx-cloud-cli#npx-nxcloud-startcirun
3131
# Uncomment this line to enable task distribution
3232
- run: RUST_BACKTRACE=1 NX_FORCE_REUSE_CACHED_GRAPH=false NX_CLOUD_FORCE_USE_EXECUTE_TASKS_V3=false NX_CLOUD_DEREFERENCE_SYMLINKS=true NX_CLOUD_RETRIEVAL_CONCURRENCY=50 NX_CLOUD_NO_TIMEOUTS=true NX_VERBOSE_LOGGING=true NX_CLOUD_VERBOSE_LOGGING=true NX_PERF_LOGGING=true npx nx-cloud start-ci-run --require-explicit-completion --distribute-on="../../.nx/workflows/distribution-config.yaml"
3333

34-
- run: rm -f .nx/workspace-data/project-graph.json
34+
# - run: rm -f .nx/workspace-data/project-graph.json
3535

3636
- name: Build
3737
id: build

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.0.1-alpha.7"
2+
id "dev.nx.gradle.project-graph" version "0.0.1-alpha.9"
33
id "base"
44
id "org.jetbrains.kotlin.jvm" apply false // https://youtrack.jetbrains.com/issue/KT-30276
55
}

0 commit comments

Comments
 (0)