[llvm] Depot runners arm (PR #120786)
Tom Stellard via llvm-commits
llvm-commits at lists.llvm.org
Tue Jan 21 10:11:25 PST 2025
================
@@ -22,7 +22,16 @@ runs:
using: "composite"
steps:
- name: Install Ninja
+ # This doesn't seem to work on Ubuntu any more, so just use apt-get
+ if: runner.os != 'Linux'
uses: llvm/actions/install-ninja at 22e9f909d35b50bd1181709564bfe816eaeaae81 # main
+
+ - name: Install Ninja (Linux)
+ if: runner.os == 'Linux'
+ shell: bash
+ run: |
+ sudo apt-get update
+ sudo apt-get -y install ninja-build
----------------
tstellar wrote:
This is working now, so I dropped this part of the change.
https://github.com/llvm/llvm-project/pull/120786
More information about the llvm-commits
mailing list