![Juliusz Sosinowicz](/assets/img/avatar_default.png)
Something broke in the actions/download-artifact action and it is not preserving symbolic links. It didn't get a new release so my guess is that something was updated in the node environment or in npm. This is a future proof solution to preserve the fs structure between upload and download.
99 lines
2.8 KiB
YAML
99 lines
2.8 KiB
YAML
name: mosquitto Tests
|
|
|
|
# START OF COMMON SECTION
|
|
on:
|
|
push:
|
|
branches: [ 'master', 'main', 'release/**' ]
|
|
pull_request:
|
|
branches: [ '*' ]
|
|
|
|
concurrency:
|
|
group: ${{ github.workflow }}-${{ github.ref }}
|
|
cancel-in-progress: true
|
|
# END OF COMMON SECTION
|
|
|
|
jobs:
|
|
build_wolfssl:
|
|
name: Build wolfSSL
|
|
# Just to keep it the same as the testing target
|
|
runs-on: ubuntu-latest
|
|
# This should be a safe limit for the tests to run.
|
|
timeout-minutes: 4
|
|
steps:
|
|
- name: Build wolfSSL
|
|
uses: wolfSSL/actions-build-autotools-project@v1
|
|
with:
|
|
path: wolfssl
|
|
configure: --enable-mosquitto CFLAGS="-DALLOW_INVALID_CERTSIGN"
|
|
install: true
|
|
|
|
- name: tar build-dir
|
|
run: tar -zcf build-dir.tgz build-dir
|
|
|
|
- name: Upload built lib
|
|
uses: actions/upload-artifact@v4
|
|
with:
|
|
name: wolf-install-mosquitto
|
|
path: build-dir.tgz
|
|
retention-days: 5
|
|
|
|
mosquitto_check:
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
ref: [ 2.0.18 ]
|
|
name: ${{ matrix.ref }}
|
|
runs-on: ubuntu-latest
|
|
# This should be a safe limit for the tests to run.
|
|
timeout-minutes: 4
|
|
needs: build_wolfssl
|
|
steps:
|
|
- name: Download lib
|
|
uses: actions/download-artifact@v4
|
|
with:
|
|
name: wolf-install-mosquitto
|
|
|
|
- name: untar build-dir
|
|
run: tar -xf build-dir.tgz
|
|
|
|
- name: Checkout OSP
|
|
uses: actions/checkout@v4
|
|
with:
|
|
repository: wolfssl/osp
|
|
path: osp
|
|
|
|
- name: Install dependencies
|
|
run: |
|
|
export DEBIAN_FRONTEND=noninteractive
|
|
sudo apt-get update
|
|
sudo apt-get install -y build-essential libev-dev libssl-dev automake python3-docutils libcunit1 libcunit1-doc libcunit1-dev pkg-config make
|
|
sudo pip install --upgrade psutil
|
|
|
|
- name: Checkout mosquitto
|
|
uses: actions/checkout@v4
|
|
with:
|
|
repository: eclipse/mosquitto
|
|
ref: v${{ matrix.ref }}
|
|
path: mosquitto
|
|
|
|
- name: Configure and build mosquitto
|
|
run: |
|
|
cd $GITHUB_WORKSPACE/mosquitto/
|
|
patch -p1 < $GITHUB_WORKSPACE/osp/mosquitto/${{ matrix.ref }}.patch
|
|
make WITH_TLS=wolfssl WITH_CJSON=no WITH_DOCS=no WOLFSSLDIR=$GITHUB_WORKSPACE/build-dir
|
|
|
|
- name: Run mosquitto tests
|
|
working-directory: ./mosquitto
|
|
run: |
|
|
# Retry up to five times
|
|
for i in {1..5}; do
|
|
TEST_RES=0
|
|
make WITH_TLS=wolfssl WITH_CJSON=no WITH_DOCS=no WOLFSSLDIR=$GITHUB_WORKSPACE/build-dir ptest || TEST_RES=$?
|
|
if [ "$TEST_RES" -eq "0" ]; then
|
|
break
|
|
fi
|
|
done
|
|
if [ "$TEST_RES" -ne "0" ]; then
|
|
exit $TEST_RES
|
|
fi
|