Skip to content

Bump docker/build-push-action from 5.1.0 to 6.4.0 #964

Bump docker/build-push-action from 5.1.0 to 6.4.0

Bump docker/build-push-action from 5.1.0 to 6.4.0 #964

Workflow file for this run

name: g++ 10 build
on:
push:
branches: [ '**' ]
pull_request:
branches: [ '**' ]
permissions:
contents: read
jobs:
build:
runs-on: ci-gcc10
if: ${{ github.repository != 'intel/pcm' }}
steps:
- name: Harden Runner
uses: step-security/harden-runner@eb238b55efaa70779f274895e782ed17c84f2895 # v2.6.1
with:
egress-policy: audit
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
with:
submodules: recursive
- name: Configure CMake
run: |
cmake --version
rm -rf ${{ github.workspace }}/build
cmake -B ${{ github.workspace }}/build -DCMAKE_INSTALL_PREFIX=${{ github.workspace }}/build
- name: Build and Install
run: |
g++ --version
cd ${{ github.workspace }}/build
make install -j$(nproc)
- name: Diagnostic
run: date