Skip to content

chore(deps): update alpine docker tag to v3.18.2 #329

chore(deps): update alpine docker tag to v3.18.2

chore(deps): update alpine docker tag to v3.18.2 #329

Workflow file for this run

name: Build
on:
push:
workflow_dispatch:
jobs:
build:
permissions:
contents: read
name: Build
runs-on: ubuntu-latest
if: ${{ !contains(github.event.head_commit.message, '[ci skip]') || github.event_name == 'workflow_dispatch' }}
strategy:
fail-fast: true
matrix:
CPPFLAGS:
- ""
- "-DMINIMALISTIC_BUILD -DLIBSSH_STATIC=1"
steps:
- name: Check out source code
uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 # v3
- name: Install dependencies
run: sudo apt-get -qq update && sudo apt-get install -y libssh-dev
- name: make
run: make CPPFLAGS="${{ matrix.CPPFLAGS }}"