Skip to content
This repository was archived by the owner on Jul 16, 2024. It is now read-only.

Commit a388c3c

Browse files
author
Mark Ryan
committed
Update the actions runner to 22.04
To ensure that we have the latest compilers. Ubuntu 22.04 will give us gcc 11, which will compile the AMX examples, but won't be able to build all the FP16 examples, and clang-14 which builds everything. Signed-off-by: Mark Ryan <[email protected]>
1 parent 8421c37 commit a388c3c

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/main.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
# This workflow contains a single job called "build"
1919
build:
2020
# The type of runner that the job will run on
21-
runs-on: ubuntu-20.04
21+
runs-on: ubuntu-22.04
2222

2323
# Steps represent a sequence of tasks that will be executed as part of the job
2424
steps:
@@ -41,4 +41,4 @@ jobs:
4141
mkdir clang-build
4242
cd clang-build
4343
CC=clang CXX=clang++ cmake -DENABLE_WERROR=ON ..
44-
make -j
44+
make -j 4

verify.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ find . \( -path './build' \) -prune -type f -o -name '*.cpp' -o -name "*.c" -o -
1515
mkdir -p build
1616
cd build
1717
cmake .. -DENABLE_WERROR=ON
18-
make -j && make test
18+
make -j 4 && make test
1919

2020
exstack=0
2121
if type eu-readelf >/dev/null 2>&1 ; then

0 commit comments

Comments
 (0)