Update update_deps.yml

Use single quotes in YAML
This commit is contained in:
Jamil
2022-05-20 10:40:00 -07:00
committed by GitHub
parent be44c9707c
commit c362683123

View File

@@ -37,21 +37,21 @@ jobs:
- opensuse15-x64
steps:
- name: install llvm on suse-based
if: startsWith(matrix.platform, "opensuse")
if: startsWith(matrix.platform, 'opensuse')
run: |
zypper install -y -t llvm
- name: install llvm on redhat-based
if: >
startsWith(matrix.platform, "amazonlinux") ||
startsWith(matrix.platform, "centos") ||
startsWith(matrix.platform, "fedora") ||
startsWith(matrix.platform, "fedora")
startsWith(matrix.platform, 'amazonlinux') ||
startsWith(matrix.platform, 'centos') ||
startsWith(matrix.platform, 'fedora') ||
startsWith(matrix.platform, 'fedora')
run: |
yum install -y llvm
- name: install llvm on debian-based
if: >
startsWith(matrix.platform, "debian") ||
startsWith(matrix.platform, "ubuntu")
startsWith(matrix.platform, 'debian') ||
startsWith(matrix.platform, 'ubuntu')
run: |
apt-get update
apt-get install -yq llvm