File tree Expand file tree Collapse file tree 3 files changed +8
-8
lines changed
llvm-spirv/.github/workflows Expand file tree Collapse file tree 3 files changed +8
-8
lines changed Original file line number Diff line number Diff line change 29
29
jobs :
30
30
clang-format-and-tidy :
31
31
name : clang-format & clang-tidy
32
- runs-on : ubuntu-18 .04
32
+ runs-on : ubuntu-20 .04
33
33
steps :
34
34
- name : Checkout sources
35
35
uses : actions/checkout@v2
64
64
# launched, so, we need to setup llvm package to perform cmake
65
65
# configuration step to generate that database
66
66
curl -L "https://apt.llvm.org/llvm-snapshot.gpg.key" | sudo apt-key add -
67
- echo "deb https://apt.llvm.org/bionic / llvm-toolchain-bionic main" | sudo tee -a /etc/apt/sources.list
67
+ echo "deb https://apt.llvm.org/focal / llvm-toolchain-focal main" | sudo tee -a /etc/apt/sources.list
68
68
sudo apt-get update
69
69
sudo apt-get install -yqq \
70
70
clang-format-${{ env.LLVM_VERSION }} clang-tidy-${{ env.LLVM_VERSION }} \
Original file line number Diff line number Diff line change @@ -45,14 +45,14 @@ jobs:
45
45
- build_type : Release
46
46
shared_libs : EnableSharedLibs
47
47
fail-fast : false
48
- runs-on : ubuntu-18 .04
48
+ runs-on : ubuntu-20 .04
49
49
steps :
50
50
- name : Install dependencies
51
51
run : |
52
52
curl -L "https://apt.llvm.org/llvm-snapshot.gpg.key" | sudo apt-key add -
53
53
curl -L "https://packages.lunarg.com/lunarg-signing-key-pub.asc" | sudo apt-key add -
54
- echo "deb https://apt.llvm.org/bionic / llvm-toolchain-bionic main" | sudo tee -a /etc/apt/sources.list
55
- echo "deb https://packages.lunarg.com/vulkan bionic main" | sudo tee -a /etc/apt/sources.list
54
+ echo "deb https://apt.llvm.org/focal / llvm-toolchain-focal main" | sudo tee -a /etc/apt/sources.list
55
+ echo "deb https://packages.lunarg.com/vulkan focal main" | sudo tee -a /etc/apt/sources.list
56
56
sudo apt-get update
57
57
sudo apt-get -yq --no-install-suggests --no-install-recommends install \
58
58
clang-${{ env.LLVM_VERSION }} \
Original file line number Diff line number Diff line change @@ -38,14 +38,14 @@ jobs:
38
38
matrix :
39
39
build_type : [Release, Debug]
40
40
fail-fast : false
41
- runs-on : ubuntu-18 .04
41
+ runs-on : ubuntu-20 .04
42
42
steps :
43
43
- name : Install dependencies
44
44
run : |
45
45
curl -L "https://apt.llvm.org/llvm-snapshot.gpg.key" | sudo apt-key add -
46
46
curl -L "https://packages.lunarg.com/lunarg-signing-key-pub.asc" | sudo apt-key add -
47
- echo "deb https://apt.llvm.org/bionic / llvm-toolchain-bionic main" | sudo tee -a /etc/apt/sources.list
48
- echo "deb https://packages.lunarg.com/vulkan bionic main" | sudo tee -a /etc/apt/sources.list
47
+ echo "deb https://apt.llvm.org/focal / llvm-toolchain-focal main" | sudo tee -a /etc/apt/sources.list
48
+ echo "deb https://packages.lunarg.com/vulkan focal main" | sudo tee -a /etc/apt/sources.list
49
49
sudo apt-get update
50
50
sudo apt-get -yq --no-install-suggests --no-install-recommends install \
51
51
clang-${{ env.LLVM_VERSION }} \
You can’t perform that action at this time.
0 commit comments