Skip to content

Commit 1138469

Browse files
authored
Prepare release branch for LLVM 19 (KhronosGroup#2654)
1 parent 9508565 commit 1138469

File tree

6 files changed

+9
-172
lines changed

6 files changed

+9
-172
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-19 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-19 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@v4
6565
with:
6666
repository: llvm/llvm-project
67-
ref: main
67+
ref: release/19.x
6868
path: llvm-project
6969
- name: Checkout the translator sources
7070
uses: actions/checkout@v4
@@ -119,7 +119,7 @@ jobs:
119119
uses: actions/checkout@v4
120120
with:
121121
repository: llvm/llvm-project
122-
ref: main
122+
ref: release/19.x
123123
path: llvm-project
124124
- name: Checkout the translator sources
125125
uses: actions/checkout@v4
@@ -171,7 +171,7 @@ jobs:
171171
uses: actions/checkout@v4
172172
with:
173173
repository: llvm/llvm-project
174-
ref: main
174+
ref: release/19.x
175175
path: llvm-project
176176
- name: Checkout the translator sources
177177
uses: actions/checkout@v4

.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/jammy/ llvm-toolchain-jammy main" | sudo tee -a /etc/apt/sources.list
47+
echo "deb https://apt.llvm.org/jammy/ llvm-toolchain-jammy-19 main" | sudo tee -a /etc/apt/sources.list
4848
echo "deb https://packages.lunarg.com/vulkan jammy 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.

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
cmake_minimum_required(VERSION 3.13.4)
22

33
if(NOT DEFINED BASE_LLVM_VERSION)
4-
set (BASE_LLVM_VERSION 19.0.0)
4+
set (BASE_LLVM_VERSION 19.1.0)
55
endif(NOT DEFINED BASE_LLVM_VERSION)
66
set(LLVM_SPIRV_VERSION ${BASE_LLVM_VERSION}.0)
77

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/actions/workflows/check-out-of-tree-build.yml/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/actions/workflows/check-in-tree-build.yml/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/actions/workflows/check-out-of-tree-build.yml/badge.svg?branch=llvm_release_190&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/actions/workflows/check-in-tree-build.yml/badge.svg?branch=llvm_release_190&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
This project currently only supports the OpenCL/compute "flavour" of SPIR-V: it consumes and produces SPIR-V modules that declare the `Kernel` capability.

0 commit comments

Comments
 (0)