We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4185bf4 commit 6a4f7b1Copy full SHA for 6a4f7b1
1 file changed
.github/actions/setup-ubuntu/action.yml
@@ -3,7 +3,22 @@ description: 'Sets up prereqs for all ubuntu machines'
3
runs:
4
using: "composite"
5
steps:
6
- - run: |
+ - name: Install Ubuntu dependencies
7
+ shell: bash
8
+ run: |
9
+ set -euo pipefail
10
+ sudo apt-get update
11
+ sudo apt-get install -y \
12
+ cmake \
13
+ ninja-build \
14
+ libcurl4-openssl-dev \
15
+ gcc \
16
+ g++
17
+
18
+ - name: Ensure ninja + mono available
19
20
21
22
mkdir -p ~/bin
23
install_ninja() {
24
(
0 commit comments