Skip to content

Commit

Permalink
Fix ninja install on Linux
Browse files Browse the repository at this point in the history
  • Loading branch information
tstellar committed Dec 21, 2024
1 parent 065341f commit 232248b
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions .github/workflows/release-binaries-setup-stage/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,14 @@ 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@22e9f909d35b50bd1181709564bfe816eaeaae81 # main

- name: Install Ninja (Linux)
if: runner.os == 'Linux'
run: |
sudo apt-get -y install ninja
- name: Setup Windows
if: startsWith(runner.os, 'Windows')
Expand Down

0 comments on commit 232248b

Please sign in to comment.