Skip to content

added missing --no-check-signature #307

added missing --no-check-signature

added missing --no-check-signature #307

Workflow file for this run

name: CodeQL analysis
on:
workflow_dispatch: {}
push:
branches:
- main
pull_request:
branches:
- main
jobs:
codeql:
runs-on: ubuntu-22.04
permissions:
actions: read
contents: read
security-events: write
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Setup spack
uses: spack/setup-spack@v2
with:
ref: develop
color: true
path: spack
- name: Find external packages
run: |
spack -e tests external find --not-buildable cmake
spack -e tests external find --not-buildable perl
spack -e tests external find --not-buildable m4
spack -e tests external find --not-buildable libtool
spack -e tests external find --not-buildable autoconf
spack -e tests external find --not-buildable automake
spack -e tests external find --not-buildable pkg-config
spack -e tests external find --not-buildable gmake
- name: Add mochi-spack-packages
run: |
git clone https://github.com/mochi-hpc/mochi-spack-packages
spack -e tests repo add mochi-spack-packages
- name: Install spack environment
run: |
spack -e tests concretize -f
- name: Create cache key from environment file
run: |
jq --sort-keys 'del(.spack.commit) | del(.roots)' tests/spack.lock > key.json
- name: Restore Spack cache
uses: actions/cache@v2
with:
path: ~/.spack-ci
key: spack-${{ hashFiles('key.json') }}
- name: Install spack environment
run: |
spack -e tests install
- name: Show spack-installed packages for debugging
run: |
spack -e tests find -dlv
- name: Initialize CodeQL
uses: github/codeql-action/init@v1
with:
languages: cpp
queries: security-and-quality
- name: Build code and run unit tests
run: |
eval `spack env activate --sh tests`
./prepare.sh
./configure --prefix=`pwd`
make
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v2