File tree Expand file tree Collapse file tree 6 files changed +9
-172
lines changed
Expand file tree Collapse file tree 6 files changed +9
-172
lines changed Original file line number Diff line number Diff line change 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 }} \
Original file line number Diff line number Diff line change 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 \
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
Original file line number Diff line number Diff line change 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 \
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 11cmake_minimum_required (VERSION 3.13.4)
22
33if (NOT DEFINED BASE_LLVM_VERSION)
4- set (BASE_LLVM_VERSION 19.0 .0)
4+ set (BASE_LLVM_VERSION 19.1 .0)
55endif (NOT DEFINED BASE_LLVM_VERSION)
66set (LLVM_SPIRV_VERSION ${BASE_LLVM_VERSION} .0)
77
Original file line number Diff line number Diff line change 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
66This 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/ ) .
77This project currently only supports the OpenCL/compute "flavour" of SPIR-V: it consumes and produces SPIR-V modules that declare the ` Kernel ` capability.
You can’t perform that action at this time.
0 commit comments