]> xenbits.xensource.com Git - people/andrewcoop/xen-test-framework.git/commitdiff
adjust ci arm-wip
authorAndrew Cooper <andrew.cooper3@citrix.com>
Tue, 27 Dec 2022 23:45:55 +0000 (23:45 +0000)
committerAndrew Cooper <andrew.cooper3@citrix.com>
Sat, 13 Jan 2024 14:53:45 +0000 (14:53 +0000)
.github/workflows/build.yml
.github/workflows/codeql.yml [deleted file]
.github/workflows/scan-build.yml [deleted file]

index 1c0a4106859d34638b398384f9ea6f7c32554323..b709fb9d465d1c8015cbc451757a0bb0e075f14c 100644 (file)
@@ -25,9 +25,10 @@ jobs:
     name: "C Builds"
 
     strategy:
+      fail-fast: false
       matrix:
         arch: [x86, arm32, arm64, riscv32, riscv64]
-        compiler: [llvm-12, llvm-13, llvm-14, llvm-15]
+        compiler: [llvm-12, llvm-13, llvm-14, llvm-15, llvm-16]
 
         include:
           - arch: x86
diff --git a/.github/workflows/codeql.yml b/.github/workflows/codeql.yml
deleted file mode 100644 (file)
index b1143a8..0000000
+++ /dev/null
@@ -1,29 +0,0 @@
-name: CodeQL
-
-on:
-  push:
-  pull_request:
-  workflow_dispatch:
-  schedule:
-    - cron: '30 12 * * 3'
-
-jobs:
-  analyse:
-
-    strategy:
-      matrix:
-        lang: [ 'cpp', 'python' ]
-
-    runs-on: ubuntu-latest
-
-    steps:
-    - uses: actions/checkout@v3
-
-    - uses: github/codeql-action/init@v2
-      with:
-        languages: ${{matrix.lang}}
-        queries: security-and-quality
-
-    - uses: github/codeql-action/autobuild@v2
-
-    - uses: github/codeql-action/analyze@v2
diff --git a/.github/workflows/scan-build.yml b/.github/workflows/scan-build.yml
deleted file mode 100644 (file)
index f91cde0..0000000
+++ /dev/null
@@ -1,20 +0,0 @@
-name: scan-build
-
-on: [push, pull_request]
-
-jobs:
-  scan-build:
-
-    runs-on: ubuntu-22.04
-
-    steps:
-    - name: Install
-      run: |
-        sudo apt-get update -q
-        sudo apt-get install clang-tools-14
-
-    - uses: actions/checkout@v3
-
-    - name: Scan-build
-      run: |
-        scan-build-14 --status-bugs -analyze-headers make -j`nproc`