Skip to content

Commit 5fdc47b

Browse files
authored
[CI] Prepare release branch for LLVM 16 (#1861)
1 parent 296cb64 commit 5fdc47b

File tree

5 files changed

+8
-171
lines changed

5 files changed

+8
-171
lines changed

.github/workflows/check-code-style.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ jobs:
6464
# launched, so, we need to setup llvm package to perform cmake
6565
# configuration step to generate that database
6666
curl -L "https://apt.llvm.org/llvm-snapshot.gpg.key" | sudo apt-key add -
67-
echo "deb https://apt.llvm.org/focal/ llvm-toolchain-focal main" | sudo tee -a /etc/apt/sources.list
67+
echo "deb https://apt.llvm.org/focal/ llvm-toolchain-focal-16 main" | sudo tee -a /etc/apt/sources.list
6868
sudo apt-get update
6969
sudo apt-get install -yqq \
7070
clang-format-${{ env.LLVM_VERSION }} clang-tidy-${{ env.LLVM_VERSION }} \

.github/workflows/check-in-tree-build.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ jobs:
5151
run: |
5252
curl -L "https://apt.llvm.org/llvm-snapshot.gpg.key" | sudo apt-key add -
5353
curl -L "https://packages.lunarg.com/lunarg-signing-key-pub.asc" | sudo apt-key add -
54-
echo "deb https://apt.llvm.org/focal/ llvm-toolchain-focal main" | sudo tee -a /etc/apt/sources.list
54+
echo "deb https://apt.llvm.org/focal/ llvm-toolchain-focal-16 main" | sudo tee -a /etc/apt/sources.list
5555
echo "deb https://packages.lunarg.com/vulkan focal main" | sudo tee -a /etc/apt/sources.list
5656
sudo apt-get update
5757
sudo apt-get -yq --no-install-suggests --no-install-recommends install \
@@ -64,7 +64,7 @@ jobs:
6464
uses: actions/checkout@v2
6565
with:
6666
repository: llvm/llvm-project
67-
ref: main
67+
ref: release/16.x
6868
path: llvm-project
6969
- name: Checkout the translator sources
7070
uses: actions/checkout@v2
@@ -119,7 +119,7 @@ jobs:
119119
uses: actions/checkout@v2
120120
with:
121121
repository: llvm/llvm-project
122-
ref: main
122+
ref: release/16.x
123123
path: llvm-project
124124
- name: Checkout the translator sources
125125
uses: actions/checkout@v2
@@ -171,7 +171,7 @@ jobs:
171171
uses: actions/checkout@v2
172172
with:
173173
repository: llvm/llvm-project
174-
ref: main
174+
ref: release/16.x
175175
path: llvm-project
176176
- name: Checkout the translator sources
177177
uses: actions/checkout@v2

.github/workflows/check-out-of-tree-build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ jobs:
4444
run: |
4545
curl -L "https://apt.llvm.org/llvm-snapshot.gpg.key" | sudo apt-key add -
4646
curl -L "https://packages.lunarg.com/lunarg-signing-key-pub.asc" | sudo apt-key add -
47-
echo "deb https://apt.llvm.org/focal/ llvm-toolchain-focal main" | sudo tee -a /etc/apt/sources.list
47+
echo "deb https://apt.llvm.org/focal/ llvm-toolchain-focal-16 main" | sudo tee -a /etc/apt/sources.list
4848
echo "deb https://packages.lunarg.com/vulkan focal main" | sudo tee -a /etc/apt/sources.list
4949
sudo apt-get update
5050
sudo apt-get -yq --no-install-suggests --no-install-recommends install \

.travis.yml

Lines changed: 0 additions & 163 deletions
This file was deleted.

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# LLVM/SPIR-V Bi-Directional Translator
22

3-
[![Out-of-tree build & tests](https://github.com/KhronosGroup/SPIRV-LLVM-Translator/workflows/Out-of-tree%20build%20&%20tests/badge.svg?branch=main&event=schedule)](https://github.com/KhronosGroup/SPIRV-LLVM-Translator/actions?query=workflow%3A%22Out-of-tree+build+%26+tests%22+event%3Aschedule)
4-
[![In-tree build & tests](https://github.com/KhronosGroup/SPIRV-LLVM-Translator/workflows/In-tree%20build%20&%20tests/badge.svg?branch=main&event=schedule)](https://github.com/KhronosGroup/SPIRV-LLVM-Translator/actions?query=workflow%3A%22In-tree+build+%26+tests%22+event%3Aschedule)
3+
[![Out-of-tree build & tests](https://github.com/KhronosGroup/SPIRV-LLVM-Translator/workflows/Out-of-tree%20build%20&%20tests/badge.svg?branch=llvm_release_160&event=schedule)](https://github.com/KhronosGroup/SPIRV-LLVM-Translator/actions?query=workflow%3A%22Out-of-tree+build+%26+tests%22+event%3Aschedule)
4+
[![In-tree build & tests](https://github.com/KhronosGroup/SPIRV-LLVM-Translator/workflows/In-tree%20build%20&%20tests/badge.svg?branch=llvm_release_160&event=schedule)](https://github.com/KhronosGroup/SPIRV-LLVM-Translator/actions?query=workflow%3A%22In-tree+build+%26+tests%22+event%3Aschedule)
55

66
This repository contains source code for the LLVM/SPIR-V Bi-Directional Translator, a library and tool for translation between LLVM IR and [SPIR-V](https://www.khronos.org/registry/spir-v/).
77

0 commit comments

Comments
 (0)