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 7979 # launched, so, we need to setup llvm package to perform cmake
8080 # configuration step to generate that database
8181 curl -L "https://apt.llvm.org/llvm-snapshot.gpg.key" | sudo apt-key add -
82- echo "deb https://apt.llvm.org/jammy/ llvm-toolchain-jammy main" | sudo tee -a /etc/apt/sources.list
82+ echo "deb https://apt.llvm.org/jammy/ llvm-toolchain-jammy-21 main" | sudo tee -a /etc/apt/sources.list
8383 sudo apt-get update
8484 sudo apt-get install -yqq \
8585 clang-format-${{ env.LLVM_VERSION }} clang-tidy-${{ env.LLVM_VERSION }} \
Original file line number Diff line number Diff line change 6969 run : |
7070 curl -L "https://apt.llvm.org/llvm-snapshot.gpg.key" | sudo apt-key add -
7171 curl -L "https://packages.lunarg.com/lunarg-signing-key-pub.asc" | sudo apt-key add -
72- echo "deb https://apt.llvm.org/jammy/ llvm-toolchain-jammy main" | sudo tee -a /etc/apt/sources.list
72+ echo "deb https://apt.llvm.org/jammy/ llvm-toolchain-jammy-21 main" | sudo tee -a /etc/apt/sources.list
7373 echo "deb https://packages.lunarg.com/vulkan jammy main" | sudo tee -a /etc/apt/sources.list
7474 sudo apt-get update
7575 sudo apt-get -yq --no-install-suggests --no-install-recommends install \
8282 uses : actions/checkout@v4
8383 with :
8484 repository : llvm/llvm-project
85- ref : main
85+ ref : release/21.x
8686 path : llvm-project
8787 - name : Checkout the translator sources
8888 uses : actions/checkout@v4
@@ -137,7 +137,7 @@ jobs:
137137 uses : actions/checkout@v4
138138 with :
139139 repository : llvm/llvm-project
140- ref : main
140+ ref : release/21.x
141141 path : llvm-project
142142 - name : Checkout the translator sources
143143 uses : actions/checkout@v4
@@ -189,7 +189,7 @@ jobs:
189189 uses : actions/checkout@v4
190190 with :
191191 repository : llvm/llvm-project
192- ref : main
192+ ref : release/21.x
193193 path : llvm-project
194194 - name : Checkout the translator sources
195195 uses : actions/checkout@v4
Original file line number Diff line number Diff line change 6161 run : |
6262 curl -L "https://apt.llvm.org/llvm-snapshot.gpg.key" | sudo apt-key add -
6363 curl -L "https://packages.lunarg.com/lunarg-signing-key-pub.asc" | sudo apt-key add -
64- echo "deb https://apt.llvm.org/jammy/ llvm-toolchain-jammy main" | sudo tee -a /etc/apt/sources.list
64+ echo "deb https://apt.llvm.org/jammy/ llvm-toolchain-jammy-21 main" | sudo tee -a /etc/apt/sources.list
6565 echo "deb https://packages.lunarg.com/vulkan jammy main" | sudo tee -a /etc/apt/sources.list
6666 sudo apt-get update
6767 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 21.0 .0)
4+ set (BASE_LLVM_VERSION 21.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_210 &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_210 &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