mirror of
https://github.com/libexpat/libexpat.git
synced 2025-04-03 20:44:58 +00:00
Make GitHub Actions run Perl XML::Parser integration tests
This commit is contained in:
parent
c8d69c6e0b
commit
b9f9170d69
1 changed files with 78 additions and 0 deletions
78
.github/workflows/perl-integration.yml
vendored
Normal file
78
.github/workflows/perl-integration.yml
vendored
Normal file
|
@ -0,0 +1,78 @@
|
|||
# __ __ _
|
||||
# ___\ \/ /_ __ __ _| |_
|
||||
# / _ \\ /| '_ \ / _` | __|
|
||||
# | __// \| |_) | (_| | |_
|
||||
# \___/_/\_\ .__/ \__,_|\__|
|
||||
# |_| XML parser
|
||||
#
|
||||
# Copyright (c) 2025 Sebastian Pipping <sebastian@pipping.org>
|
||||
# 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
|
Loading…
Add table
Reference in a new issue