mirror of
https://github.com/nodejs/node.git
synced 2025-08-15 13:48:44 +02:00

This is now required by V8. Refs: https://github.com/nodejs/node-v8/issues/302 PR-URL: https://github.com/nodejs/node/pull/59048 Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com> Reviewed-By: Rafael Gonzaga <rafael.nunu@hotmail.com> Reviewed-By: Matteo Collina <matteo.collina@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Richard Lau <richard.lau@ibm.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Marco Ippolito <marcoippolito54@gmail.com>
15 lines
407 B
YAML
15 lines
407 B
YAML
name: Install Clang
|
|
description: Installs a specific Clang version. Useful if the GitHub runner does not have it by default.
|
|
inputs:
|
|
clang-version:
|
|
description: The Clang major version to install
|
|
required: true
|
|
|
|
runs:
|
|
using: composite
|
|
steps:
|
|
- name: Install Clang
|
|
shell: bash
|
|
run: |
|
|
sudo apt-get update
|
|
sudo apt-get install -y clang-${{ inputs.clang-version }}
|