We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 52fce91 commit 6a30476Copy full SHA for 6a30476
tests_rv/patch/build_allmod_rv64_clang/build_allmod_rv64_clang.sh
@@ -0,0 +1,20 @@
1
+#!/bin/bash
2
+# SPDX-License-Identifier: GPL-2.0
3
+#
4
+# Copyright (c) 2022 by Rivos Inc.
5
+
6
+tmpdir=$(mktemp -d)
7
+rc=0
8
9
+tuxmake --wrapper ccache --target-arch riscv --directory . \
10
+ --environment=KBUILD_BUILD_TIMESTAMP=@1621270510 \
11
+ --environment=KBUILD_BUILD_USER=tuxmake --environment=KBUILD_BUILD_HOST=tuxmake \
12
+ -o $tmpdir --toolchain llvm allmodconfig || rc=1
13
14
+if [ $rc -ne 0 ]; then
15
+ echo "Build failed" >&$DESC_FD
16
+fi
17
18
+rm -rf $tmpdir
19
20
+exit $rc
tests_rv/patch/build_allmod_rv64_clang/info.json
@@ -0,0 +1,5 @@
+{
+ "run": ["build_allmod_rv64_clang.sh"],
+ "pull-requests": true,
+ "disabled": true
+}
0 commit comments