You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
7z a pragma-win64.zip "${{ steps.build-pragma.outputs.install-dir }}/**"
71
+
7z a pragma-windows-x64-clang.zip "${{ steps.build-pragma.outputs.install-dir }}/**"
72
72
73
73
- name: Generate nightly tag description
74
74
shell: bash
75
75
run: |
76
76
curDate=$(date -u '+%Y-%m-%d %H:%M:%S %Z')
77
-
printf "This is an auto-generated pre-release, built from the latest version of the source code.\nIt includes all files necessary to run Pragma, as well as the latest version of the Pragma Filmmaker, however functionality and stability are **not** guaranteed.\n\nFor Windows, you can either download `pragma_setup.exe` to install Pragma on your system, or `pragma-win64.zip` if you prefer a portable version.\n\nLatest release date: $curDate" > tag_text.txt
77
+
printf "This is an auto-generated pre-release, built from the latest version of the source code.\nIt includes all files necessary to run Pragma, as well as the latest version of the Pragma Filmmaker, however functionality and stability are **not** guaranteed.\n\nFor Windows, you can either download `pragma_setup.exe` to install Pragma on your system, or `pragma-windows-x64-clang.zip` if you prefer a portable version.\n\nLatest release date: $curDate" > tag_text.txt
78
78
79
79
- name: Update nightly tag description
80
80
uses: softprops/action-gh-release@v0.1.15
@@ -88,7 +88,7 @@ jobs:
88
88
with:
89
89
tag: nightly
90
90
token: ${{ secrets.GITHUB_TOKEN }}
91
-
files: "pragma-win64.zip"
91
+
files: "pragma-windows-x64-clang.zip"
92
92
93
93
- name: Collect PDB files
94
94
uses: ./pragma/github_actions/collect_pdb_files
@@ -102,14 +102,14 @@ jobs:
102
102
curDir="$PWD"
103
103
# 7z expects a standard windows path
104
104
winPath=$(echo "$curDir" | sed -e 's/^\///' -e 's/\//\\/g' -e 's/^./\0:/')
105
-
7z a debug_pdb.zip "$winPath/pdb/**"
105
+
7z a debug-pdb-windows-x64-clang.zip "$winPath/pdb/**"
Copy file name to clipboardExpand all lines: .github/workflows/check-linux-build-gcc.yml
+3-2Lines changed: 3 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -1,4 +1,5 @@
1
1
name: Check Linux Build (GCC)
2
+
# Note: Due to ongoing GCC compiler errors with C++20 modules, this workflow will likely fail. Once the compiler errors have been resolved, this should be changed to on: push.
Copy file name to clipboardExpand all lines: .github/workflows/check-windows-build-msvc.yml
+7-15Lines changed: 7 additions & 15 deletions
Original file line number
Diff line number
Diff line change
@@ -1,11 +1,11 @@
1
-
name: Check Windows Build
1
+
name: Check Windows Build (MSVC)
2
+
# Note: Building with MSVC will hit the GitHub runner time limit for workflow jobs, due to long build times. This is likely due to MSVC compiler bugs with C++20 modules.
3
+
# Once these issues have been resolved, this should be changed to on: push.
0 commit comments