mirror of https://github.com/wolfSSL/wolfssh.git
96 lines
2.9 KiB
YAML
96 lines
2.9 KiB
YAML
name: OS Check Test
|
|
|
|
on:
|
|
push:
|
|
branches: [ '*' ]
|
|
pull_request:
|
|
branches: [ '*' ]
|
|
|
|
concurrency:
|
|
group: ${{ github.workflow }}-${{ github.ref }}
|
|
cancel-in-progress: true
|
|
|
|
jobs:
|
|
create_matrix:
|
|
runs-on: ubuntu-latest
|
|
outputs:
|
|
versions: ${{ steps.json.outputs.versions }}
|
|
steps:
|
|
- name: Create wolfSSL version matrix
|
|
id: json
|
|
run: |
|
|
current=`curl -s https://api.github.com/repos/wolfssl/wolfssl/releases | grep tag_name | cut -d : -f 2,3 | tr -d \" | tr -d , | tr -d ' ' | head -1`
|
|
last=`curl -s https://api.github.com/repos/wolfssl/wolfssl/releases | grep tag_name | cut -d : -f 2,3 | tr -d \" | tr -d , | tr -d ' ' | head -2 | tail -1`
|
|
VERSIONS=$(echo "[ \"master\", \"$current\", \"$last\" ]")
|
|
echo "wolfSSL versions found: $VERSIONS"
|
|
echo "versions=$VERSIONS" >> $GITHUB_OUTPUT
|
|
|
|
build_wolfssl:
|
|
needs: create_matrix
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
os: [ ubuntu-latest, macos-latest ]
|
|
wolfssl: ${{ fromJson(needs.create_matrix.outputs['versions']) }}
|
|
name: Build wolfssl
|
|
runs-on: ${{ matrix.os }}
|
|
timeout-minutes: 4
|
|
steps:
|
|
- name: Checking cache for wolfssl
|
|
uses: actions/cache@v4
|
|
id: cache-wolfssl
|
|
with:
|
|
path: build-dir/
|
|
key: wolfssh-os-check-wolfssl-${{ matrix.wolfssl }}-${{ matrix.os }}
|
|
lookup-only: true
|
|
|
|
- name: debug
|
|
run: echo wolfssl version ${{ matrix.wolfssl }}
|
|
|
|
- name: Checkout, build, and install wolfssl
|
|
if: steps.cache-wolfssl.outputs.cache-hit != 'true'
|
|
uses: wolfSSL/actions-build-autotools-project@v1
|
|
with:
|
|
repository: wolfssl/wolfssl
|
|
ref: ${{ matrix.wolfssl }}
|
|
path: wolfssl
|
|
configure: --enable-all
|
|
check: false
|
|
install: true
|
|
|
|
build_wolfssh:
|
|
needs:
|
|
- build_wolfssl
|
|
- create_matrix
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
os: [ ubuntu-latest, macos-latest ]
|
|
wolfssl: ${{ fromJson(needs.create_matrix.outputs['versions']) }}
|
|
config: [
|
|
'',
|
|
'--enable-all',
|
|
'--enable-sftp',
|
|
'--enable-scp',
|
|
'--enable-keyboard-interactive',
|
|
'--enable-shell',
|
|
]
|
|
name: Build wolfssh
|
|
runs-on: ${{ matrix.os }}
|
|
timeout-minutes: 4
|
|
steps:
|
|
- name: Checking cache for wolfssl
|
|
uses: actions/cache@v4
|
|
with:
|
|
path: build-dir/
|
|
key: wolfssh-os-check-wolfssl-${{ matrix.wolfssl }}-${{ matrix.os }}
|
|
fail-on-cache-miss: true
|
|
|
|
- name: Checkout, build, and test wolfssh
|
|
uses: wolfSSL/actions-build-autotools-project@v1
|
|
with:
|
|
repository: wolfssl/wolfssh
|
|
path: wolfssh
|
|
configure: ${{ matrix.config }} LDFLAGS="-L${{ github.workspace }}/build-dir/lib" CPPFLAGS="-I${{ github.workspace }}/build-dir/include"
|
|
check: true
|