From 2189da6f924c76938a54052429ae0f27613a6b4c Mon Sep 17 00:00:00 2001 From: Twig6943 <119701717+Twig6943@users.noreply.github.com> Date: Tue, 3 Mar 2026 02:01:00 +0300 Subject: Make ci skip on non important stuff - give tutorial image a name (#202) --- .github/workflows/nightly.yml | 3 +++ 1 file changed, 3 insertions(+) (limited to '.github/workflows') diff --git a/.github/workflows/nightly.yml b/.github/workflows/nightly.yml index 00f18f53..0affa845 100644 --- a/.github/workflows/nightly.yml +++ b/.github/workflows/nightly.yml @@ -5,6 +5,9 @@ on: push: branches: - 'main' + paths-ignore: + - '.gitignore' + - '*.md' jobs: build: -- cgit v1.2.3 From c1ec83aedc9b946b60a7c250983af876b2dccb2b Mon Sep 17 00:00:00 2001 From: void_17 <61356189+void2012@users.noreply.github.com> Date: Tue, 3 Mar 2026 12:59:47 +0700 Subject: Add nightly.yml release description Compiler information mostly --- .github/workflows/nightly.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to '.github/workflows') diff --git a/.github/workflows/nightly.yml b/.github/workflows/nightly.yml index 0affa845..df01b57a 100644 --- a/.github/workflows/nightly.yml +++ b/.github/workflows/nightly.yml @@ -35,4 +35,5 @@ jobs: with: tag_name: nightly name: Nightly Release - files: LCEWindows64.zip \ No newline at end of file + body: Compiled with MSVC v14.44.35207 in Release mode with Whole Program Optimization, as well as `/O2 /Ot /Oi /Ob3 /GF`. (So far the floating point model is `/fp:strict` to avoid undefined behavior before we refactor for performance). Requires at least Windows 7 and DirectX 11 compatible GPU to run. + files: LCEWindows64.zip -- cgit v1.2.3 From a3095a705089145587835346378d9051e1d5db45 Mon Sep 17 00:00:00 2001 From: void_17 <61356189+void2012@users.noreply.github.com> Date: Tue, 3 Mar 2026 23:07:37 +0700 Subject: Ship updated binary alongside with the whole archive in nightly builds Now ship both the entire .zip archive and the separate .exe binary updated on each commit. --- .github/workflows/nightly.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to '.github/workflows') diff --git a/.github/workflows/nightly.yml b/.github/workflows/nightly.yml index df01b57a..b4830a6d 100644 --- a/.github/workflows/nightly.yml +++ b/.github/workflows/nightly.yml @@ -35,5 +35,7 @@ jobs: with: tag_name: nightly name: Nightly Release - body: Compiled with MSVC v14.44.35207 in Release mode with Whole Program Optimization, as well as `/O2 /Ot /Oi /Ob3 /GF`. (So far the floating point model is `/fp:strict` to avoid undefined behavior before we refactor for performance). Requires at least Windows 7 and DirectX 11 compatible GPU to run. - files: LCEWindows64.zip + body: Compiled with MSVC v14.44.35207 in Release mode with Whole Program Optimization, as well as `/O2 /Ot /Oi /Ob3 /GF /fp:precise`. Requires at least Windows 7 and DirectX 11 compatible GPU to run. + files: | + LCEWindows64.zip + ./x64/Release/Minecraft.Client.exe -- cgit v1.2.3 From b44d29b2ff6742af5223582960518c5ea948748f Mon Sep 17 00:00:00 2001 From: void_17 <61356189+void2012@users.noreply.github.com> Date: Tue, 3 Mar 2026 23:18:57 +0700 Subject: Ship the .pdb file in nightly builds too --- .github/workflows/nightly.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to '.github/workflows') diff --git a/.github/workflows/nightly.yml b/.github/workflows/nightly.yml index b4830a6d..872834c3 100644 --- a/.github/workflows/nightly.yml +++ b/.github/workflows/nightly.yml @@ -35,7 +35,8 @@ jobs: with: tag_name: nightly name: Nightly Release - body: Compiled with MSVC v14.44.35207 in Release mode with Whole Program Optimization, as well as `/O2 /Ot /Oi /Ob3 /GF /fp:precise`. Requires at least Windows 7 and DirectX 11 compatible GPU to run. + body: Requires at least Windows 7 and DirectX 11 compatible GPU to run. Compiled with MSVC v14.44.35207 in Release mode with Whole Program Optimization, as well as `/O2 /Ot /Oi /Ob3 /GF /fp:precise`. files: | LCEWindows64.zip ./x64/Release/Minecraft.Client.exe + ./x64/Release/Minecraft.Client.pdb -- cgit v1.2.3 From 9b5348113c696107cfa6620aae5b4b241adf6a2e Mon Sep 17 00:00:00 2001 From: rtm516 Date: Tue, 3 Mar 2026 18:20:14 +0000 Subject: Don't build when PR template is updated --- .github/workflows/nightly.yml | 1 + 1 file changed, 1 insertion(+) (limited to '.github/workflows') diff --git a/.github/workflows/nightly.yml b/.github/workflows/nightly.yml index 872834c3..4ef1274d 100644 --- a/.github/workflows/nightly.yml +++ b/.github/workflows/nightly.yml @@ -8,6 +8,7 @@ on: paths-ignore: - '.gitignore' - '*.md' + - '.github/*.md' jobs: build: -- cgit v1.2.3