From 1b3e309986d9db726b9589717f82f74673ee719a Mon Sep 17 00:00:00 2001 From: Aiden Grossman Date: Sun, 13 Apr 2025 10:53:35 +0000 Subject: [PATCH 1/4] =?UTF-8?q?[=F0=9D=98=80=F0=9D=97=BD=F0=9D=97=BF]=20in?= =?UTF-8?q?itial=20version?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Created using spr 1.3.4 --- .github/workflows/premerge.yaml | 7 +++++++ bolt/CMakeLists.txt | 1 + 2 files changed, 8 insertions(+) diff --git a/.github/workflows/premerge.yaml b/.github/workflows/premerge.yaml index b7d2c7154762e..51333d9c4c397 100644 --- a/.github/workflows/premerge.yaml +++ b/.github/workflows/premerge.yaml @@ -65,6 +65,13 @@ jobs: export CXX=/opt/llvm/bin/clang++ ./.ci/monolithic-linux.sh "${projects_to_build}" "${project_check_targets}" "${runtimes_to_build}" "${runtimes_check_targets}" + - name: "Upload artifact" + - name: Upload Artifacts + uses: actions/upload-artifact@65c4c4a1ddee5b72f698fdd19549f0f0fb45cf08 # v4.6.0 + with: + name: Premerge Artifacts + path: artifacts/ + retention-days: 5 premerge-checks-windows: name: Windows Premerge Checks (Test Only - Please Ignore Results) diff --git a/bolt/CMakeLists.txt b/bolt/CMakeLists.txt index f5ffa81227064..b5e202156fc60 100644 --- a/bolt/CMakeLists.txt +++ b/bolt/CMakeLists.txt @@ -1,3 +1,4 @@ +# testing cmake_minimum_required(VERSION 3.20.0) set(LLVM_SUBPROJECT_TITLE "BOLT") From 130b684aa1fcbdab24fdb7ceedf77d386c19c142 Mon Sep 17 00:00:00 2001 From: Aiden Grossman Date: Sun, 13 Apr 2025 11:06:45 +0000 Subject: [PATCH 2/4] update Created using spr 1.3.4 --- bolt/CMakeLists.txt | 1 - 1 file changed, 1 deletion(-) diff --git a/bolt/CMakeLists.txt b/bolt/CMakeLists.txt index b5e202156fc60..f5ffa81227064 100644 --- a/bolt/CMakeLists.txt +++ b/bolt/CMakeLists.txt @@ -1,4 +1,3 @@ -# testing cmake_minimum_required(VERSION 3.20.0) set(LLVM_SUBPROJECT_TITLE "BOLT") From 1343f7925d515d5ec038f546b5c1fe912c00df91 Mon Sep 17 00:00:00 2001 From: Aiden Grossman Date: Sun, 13 Apr 2025 11:19:36 +0000 Subject: [PATCH 3/4] fix? Created using spr 1.3.4 --- .github/workflows/premerge.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/premerge.yaml b/.github/workflows/premerge.yaml index 51333d9c4c397..53619de53c117 100644 --- a/.github/workflows/premerge.yaml +++ b/.github/workflows/premerge.yaml @@ -70,7 +70,7 @@ jobs: uses: actions/upload-artifact@65c4c4a1ddee5b72f698fdd19549f0f0fb45cf08 # v4.6.0 with: name: Premerge Artifacts - path: artifacts/ + path: artifacts/** retention-days: 5 premerge-checks-windows: From 0bbd09f9381ac2672b804d1c9196ae74e9cd8870 Mon Sep 17 00:00:00 2001 From: Aiden Grossman Date: Sun, 13 Apr 2025 11:36:03 +0000 Subject: [PATCH 4/4] fix Created using spr 1.3.4 --- .github/workflows/premerge.yaml | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/.github/workflows/premerge.yaml b/.github/workflows/premerge.yaml index 53619de53c117..ebb8df094244c 100644 --- a/.github/workflows/premerge.yaml +++ b/.github/workflows/premerge.yaml @@ -70,8 +70,9 @@ jobs: uses: actions/upload-artifact@65c4c4a1ddee5b72f698fdd19549f0f0fb45cf08 # v4.6.0 with: name: Premerge Artifacts - path: artifacts/** + path: artifacts/ retention-days: 5 + include-hidden-files: 'true' premerge-checks-windows: name: Windows Premerge Checks (Test Only - Please Ignore Results) @@ -120,6 +121,13 @@ jobs: set MAX_PARALLEL_LINK_JOBS=64 call C:\\BuildTools\\Common7\\Tools\\VsDevCmd.bat -arch=amd64 -host_arch=amd64 bash .ci/monolithic-windows.sh "${{ steps.vars.outputs.windows-projects }}" "${{ steps.vars.outputs.windows-check-targets }}" + - name: Upload Artifacts + uses: actions/upload-artifact@65c4c4a1ddee5b72f698fdd19549f0f0fb45cf08 # v4.6.0 + with: + name: Premerge Artifacts + path: artifacts/ + retention-days: 5 + include-hidden-files: 'true' premerge-check-macos: name: MacOS Premerge Checks