From b9f9170d69a743023717c54480684ffd3880c376 Mon Sep 17 00:00:00 2001 From: Sebastian Pipping Date: Sun, 16 Mar 2025 00:16:44 +0100 Subject: [PATCH] Make GitHub Actions run Perl XML::Parser integration tests --- .github/workflows/perl-integration.yml | 78 ++++++++++++++++++++++++++ 1 file changed, 78 insertions(+) create mode 100644 .github/workflows/perl-integration.yml diff --git a/.github/workflows/perl-integration.yml b/.github/workflows/perl-integration.yml new file mode 100644 index 00000000..1662cf94 --- /dev/null +++ b/.github/workflows/perl-integration.yml @@ -0,0 +1,78 @@ +# __ __ _ +# ___\ \/ /_ __ __ _| |_ +# / _ \\ /| '_ \ / _` | __| +# | __// \| |_) | (_| | |_ +# \___/_/\_\ .__/ \__,_|\__| +# |_| XML parser +# +# Copyright (c) 2025 Sebastian Pipping +# Licensed under the MIT license: +# +# Permission is hereby granted, free of charge, to any person obtaining +# a copy of this software and associated documentation files (the +# "Software"), to deal in the Software without restriction, including +# without limitation the rights to use, copy, modify, merge, publish, +# distribute, sublicense, and/or sell copies of the Software, and to permit +# persons to whom the Software is furnished to do so, subject to the +# following conditions: +# +# The above copyright notice and this permission notice shall be included +# in all copies or substantial portions of the Software. +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +# EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +# MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN +# NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, +# DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR +# OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE +# USE OR OTHER DEALINGS IN THE SOFTWARE. + +name: Run Perl XML::Parser integration tests + +on: + pull_request: + push: + schedule: + - cron: '0 2 * * 5' # Every Friday at 2am + workflow_dispatch: + +permissions: + contents: read + +jobs: + perl_integration: + name: Run Perl XML::Parser integration tests + runs-on: ubuntu-24.04 + steps: + - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 + + - name: Build and replace system Expat + run: | + set -x + + cd expat/ + args=( + # Replace system Expat + -DCMAKE_INSTALL_PREFIX=/usr + + # Build nothing but core library + -DEXPAT_BUILD_DOCS=OFF + -DEXPAT_BUILD_EXAMPLES=OFF + -DEXPAT_BUILD_TESTS=OFF + -DEXPAT_BUILD_TOOLS=OFF + ) + cmake "${args[@]}" -S . -B build + make -C build VERBOSE=1 -j$(nproc) + sudo make -C build VERBOSE=1 install + + - name: Run Perl XML::Parser integration tests + run: | + set -x + + # NOTE: The version pin is for CI stability. + git clone --depth 1 --branch 2.47 https://github.com/cpan-authors/XML-Parser + cd XML-Parser/ + + perl Makefile.PL + make -j$(nproc) + make test