Skip to content

common: add some changes to permissions #5

common: add some changes to permissions

common: add some changes to permissions #5

Workflow file for this run

# Measure code coverage and report it to codecov.io
name: Coverage
on:
workflow_call:
secrets:
CODECOV_TOKEN:
required: true
env:
# Note: All coverage scans, e.g. on pull requests, should be run in the same
# environment.
GITHUB_REPO: pmem/pmdk
DOCKER_REPO: ghcr.io/pmem/pmdk
HOST_WORKDIR: /home/runner/work/pmdk/pmdk
WORKDIR: utils/docker
PMDK_CC: gcc
PMDK_CXX: g++
MAKE_PKG: 0
SRC_CHECKERS: 0
OS: ubuntu
OS_VER: 22.04
COVERAGE: 1
TEST_BUILD: debug
FAULT_INJECTION: 1
jobs:
linux:
name: Linux
runs-on: ubuntu-latest
permissions:
actions: read
contents: read
security-events: write
steps:
- name: Clone the git repo
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
- name: Pull the image
run: cd $WORKDIR && ./pull-or-rebuild-image.sh
- name: Run the build
run: cd $WORKDIR && ./build-CI.sh
- name: Upload coverage to Codecov
uses:
with:
root_dir: /home/runner/work/pmdk/pmdk/
directory: /home/runner/work/pmdk/pmdk/
token: ${{ secrets.CODECOV_TOKEN }}
verbose: true