Skip to content

Commit

Permalink
Updated nightly build workflow 11/01/2024 | 24w44a3
Browse files Browse the repository at this point in the history
  • Loading branch information
GamesTrap committed Nov 1, 2024
1 parent ed6d0cf commit b5c4884
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 1 deletion.
2 changes: 2 additions & 0 deletions .github/composite/artifact-upload/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,8 @@ runs:
echo "TARGET_PATH=${{ github.event.repository.name }}/pull_request/${{github.event.pull_request.number}}/${{github.run_number}}_${{github.sha}}" >> "$GITHUB_OUTPUT"
elif [[ "${{ github.event_name }}" == 'workflow_dispatch' ]]; then
echo "TARGET_PATH=${{ github.event.repository.name }}/workflow_dispatch/${{github.run_number}}_${{github.sha}}" >> "$GITHUB_OUTPUT"
elif [[ "${{ github.event_name }}" == 'schedule' ]]; then
echo "TARGET_PATH=${{ github.event.repository.name }}/schedule/${{github.run_number}}_${{github.sha}}" >> "$GITHUB_OUTPUT"
fi
- name: Archive artifact (7z)
shell: bash
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/nightly-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ jobs:
- name: Install compiler
run: |
if [ "${{matrix.compiler}}" == "clang"]; then
sudo apt install -y clang-${{matrix.clang_version}} llvm-${{matrix.clang_version}};
sudo apt install -y clang-${{matrix.clang_version}} llvm-${{matrix.clang_version}} libclang-rt-${{matrix.clang_version}}-dev;
sudo update-alternatives --install /usr/bin/llvm-ar llvm-ar /usr/bin/llvm-ar-${{matrix.clang_version}} 10;
sudo update-alternatives --install /usr/bin/clang clang /usr/bin/clang-${{matrix.clang_version}} 10;
sudo update-alternatives --install /usr/bin/clang++ clang++ /usr/bin/clang++-${{matrix.clang_version}} 10;
Expand Down
1 change: 1 addition & 0 deletions SITREPS.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5343,3 +5343,4 @@ SITREP 10/30/2024|24w44a2
SITREP 11/01/2024|24w44a3
- Changed TRAP Engine version to 24w44a3(0.11.33)
- Fixed compiler errors in nightly build workflow ~<20 mins
- Upload-Artifact Added support for 'schedule' event ~<5 mins

0 comments on commit b5c4884

Please sign in to comment.