Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 3 additions & 5 deletions .github/workflows/rust-premerge.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
premerge-checks-linux:
name: Build and Test Linux
if: >-
github.repository_owner == 'rust-lang' &&
github.repository_owner == 'dianqk' &&
(github.event_name != 'pull_request' || github.event.action != 'closed')
runs-on: ubuntu-24.04
steps:
Expand Down Expand Up @@ -56,7 +56,7 @@ jobs:
name: Build and Test macOS
runs-on: macos-14
if: >-
github.repository_owner == 'rust-lang' &&
github.repository_owner == 'dianqk' &&
(github.event_name != 'pull_request' || github.event.action != 'closed')
steps:
- name: Checkout LLVM
Expand All @@ -68,7 +68,5 @@ jobs:
cmake -S llvm -B build -G Ninja \
-DCMAKE_BUILD_TYPE=Release \
-DLLDB_INCLUDE_TESTS=OFF \
-DLLVM_ENABLE_ASSERTIONS=ON \
-DCMAKE_C_COMPILER=/usr/bin/clang \
-DCMAKE_CXX_COMPILER=/usr/bin/clang++
-DLLVM_ENABLE_ASSERTIONS=ON
ninja -C build check-llvm
Loading