mirror of
https://github.com/libarchive/libarchive.git
synced 2026-01-27 18:04:47 +00:00
Bumps the all-actions group with 3 updates in the / directory: [actions/checkout](https://github.com/actions/checkout), [actions/upload-artifact](https://github.com/actions/upload-artifact) and [github/codeql-action](https://github.com/github/codeql-action). Updates `actions/checkout` from 5.0.0 to 5.0.1 - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](08c6903cd8...93cb6efe18) Updates `actions/upload-artifact` from 4.6.2 to 5.0.0 - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](ea165f8d65...330a01c490) Updates `github/codeql-action` from 3.30.6 to 4.31.3 - [Release notes](https://github.com/github/codeql-action/releases) - [Changelog](https://github.com/github/codeql-action/blob/main/CHANGELOG.md) - [Commits](64d10c1313...014f16e7ab) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: 5.0.1 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: all-actions - dependency-name: actions/upload-artifact dependency-version: 5.0.0 dependency-type: direct:production update-type: version-update:semver-major dependency-group: all-actions - dependency-name: github/codeql-action dependency-version: 4.31.3 dependency-type: direct:production update-type: version-update:semver-major dependency-group: all-actions ... Signed-off-by: dependabot[bot] <support@github.com>
170 lines
5.2 KiB
YAML
170 lines
5.2 KiB
YAML
name: CI
|
|
|
|
on: [push, pull_request]
|
|
|
|
permissions:
|
|
contents: read
|
|
|
|
jobs:
|
|
MacOS:
|
|
runs-on: macos-15
|
|
strategy:
|
|
matrix:
|
|
bs: [autotools, cmake]
|
|
steps:
|
|
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
|
|
- name: Install dependencies
|
|
run: ./build/ci/github_actions/install-macos-dependencies.sh
|
|
- name: Autogen
|
|
run: ./build/ci/build.sh -a autogen
|
|
env:
|
|
BS: ${{ matrix.bs }}
|
|
- name: Configure
|
|
run: ./build/ci/build.sh -a configure
|
|
env:
|
|
BS: ${{ matrix.bs }}
|
|
# Avoid using liblzma from the Xcode 16 / MacOSX15.0.sdk, which fails RISCV filter tests.
|
|
CMAKE_ARGS: -D LIBLZMA_LIBRARY=/opt/homebrew/lib/liblzma.dylib -D LIBLZMA_INCLUDE_DIR=/opt/homebrew/include/lzma.h
|
|
- name: Build
|
|
run: ./build/ci/build.sh -a build
|
|
env:
|
|
BS: ${{ matrix.bs }}
|
|
MAKE_ARGS: -j3
|
|
- name: Test
|
|
run: ./build/ci/build.sh -a test
|
|
env:
|
|
BS: ${{ matrix.bs }}
|
|
SKIP_OPEN_FD_ERR_TEST: 1
|
|
IGNORE_TRAVERSALS_TEST4: 1
|
|
MAKE_ARGS: -j3
|
|
CTEST_OUTPUT_ON_FAILURE: ON
|
|
- name: Install
|
|
run: ./build/ci/build.sh -a install
|
|
env:
|
|
BS: ${{ matrix.bs }}
|
|
MAKE_ARGS: -j3
|
|
- name: Artifact
|
|
run: ./build/ci/build.sh -a artifact
|
|
env:
|
|
BS: ${{ matrix.bs }}
|
|
- uses: actions/upload-artifact@b7c566a772e6b6bfb58ed0dc250532a479d7789f # v6.0.0
|
|
with:
|
|
name: libarchive-macos-${{ matrix.bs }}-${{ github.sha }}
|
|
path: libarchive.tar.xz
|
|
|
|
Ubuntu:
|
|
runs-on: ubuntu-24.04
|
|
strategy:
|
|
matrix:
|
|
bs: [autotools, cmake]
|
|
crypto: [mbedtls, nettle, openssl]
|
|
steps:
|
|
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
|
|
- name: Update apt cache
|
|
run: sudo apt-get update
|
|
- name: Install dependencies
|
|
run: sudo apt-get install -y autoconf automake build-essential cmake git libssl-dev nettle-dev libmbedtls-dev libacl1-dev libbz2-dev liblzma-dev liblz4-dev libzstd-dev lzop pkg-config zlib1g-dev
|
|
- name: Autogen
|
|
run: ./build/ci/build.sh -a autogen
|
|
env:
|
|
BS: ${{ matrix.bs }}
|
|
- name: Configure
|
|
run: ./build/ci/build.sh -a configure
|
|
env:
|
|
BS: ${{ matrix.bs }}
|
|
CRYPTO: ${{ matrix.crypto }}
|
|
- name: Build
|
|
run: ./build/ci/build.sh -a build
|
|
env:
|
|
BS: ${{ matrix.bs }}
|
|
MAKE_ARGS: -j4
|
|
- name: Test
|
|
run: ./build/ci/build.sh -a test
|
|
env:
|
|
BS: ${{ matrix.bs }}
|
|
SKIP_OPEN_FD_ERR_TEST: 1
|
|
MAKE_ARGS: -j4
|
|
CTEST_OUTPUT_ON_FAILURE: ON
|
|
- name: Install
|
|
run: ./build/ci/build.sh -a install
|
|
env:
|
|
BS: ${{ matrix.bs }}
|
|
- name: Artifact
|
|
run: ./build/ci/build.sh -a artifact
|
|
env:
|
|
BS: ${{ matrix.bs }}
|
|
- uses: actions/upload-artifact@b7c566a772e6b6bfb58ed0dc250532a479d7789f # v6.0.0
|
|
with:
|
|
name: libarchive-ubuntu-${{ matrix.bs }}-${{ matrix.crypto }}-${{ github.sha }}
|
|
path: libarchive.tar.xz
|
|
Ubuntu-distcheck:
|
|
runs-on: ubuntu-24.04
|
|
steps:
|
|
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
|
|
- name: Update package definitions
|
|
run: sudo apt-get update
|
|
- name: Install dependencies
|
|
run: sudo apt-get install -y autoconf automake bsdmainutils build-essential cmake ghostscript git groff libssl-dev libacl1-dev libbz2-dev liblzma-dev liblz4-dev libzstd-dev lzop pkg-config zip zlib1g-dev
|
|
- name: Autogen
|
|
run: ./build/ci/build.sh -a autogen
|
|
- name: Configure
|
|
run: ./build/ci/build.sh -a configure
|
|
- name: Distcheck
|
|
run: ./build/ci/build.sh -a distcheck
|
|
env:
|
|
SKIP_OPEN_FD_ERR_TEST: 1
|
|
- name: Dist-Artifact
|
|
run: ./build/ci/build.sh -a dist-artifact
|
|
- uses: actions/upload-artifact@b7c566a772e6b6bfb58ed0dc250532a479d7789f # v6.0.0
|
|
with:
|
|
name: libarchive-${{ github.sha }}
|
|
path: libarchive-dist.tar
|
|
|
|
Windows:
|
|
runs-on: windows-2022
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
be: [mingw-gcc, msvc]
|
|
steps:
|
|
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
|
|
- name: Install mingw
|
|
if: ${{ matrix.be=='mingw-gcc' }}
|
|
run: choco install mingw
|
|
shell: cmd
|
|
- name: Install library dependencies
|
|
run: ./build/ci/github_actions/ci.cmd deplibs
|
|
shell: cmd
|
|
env:
|
|
BE: ${{ matrix.be }}
|
|
- name: Configure
|
|
run: ./build/ci/github_actions/ci.cmd configure
|
|
shell: cmd
|
|
env:
|
|
BE: ${{ matrix.be }}
|
|
- name: Build
|
|
run: ./build/ci/github_actions/ci.cmd build
|
|
shell: cmd
|
|
env:
|
|
BE: ${{ matrix.be }}
|
|
- name: Test
|
|
run: ./build/ci/github_actions/ci.cmd test
|
|
shell: cmd
|
|
env:
|
|
BE: ${{ matrix.be }}
|
|
CTEST_OUTPUT_ON_FAILURE: ON
|
|
- name: Install
|
|
run: ./build/ci/github_actions/ci.cmd install
|
|
shell: cmd
|
|
env:
|
|
BE: ${{ matrix.be }}
|
|
- name: Artifact
|
|
run: ./build/ci/github_actions/ci.cmd artifact
|
|
shell: cmd
|
|
env:
|
|
BE: ${{ matrix.be }}
|
|
- uses: actions/upload-artifact@b7c566a772e6b6bfb58ed0dc250532a479d7789f # v6.0.0
|
|
with:
|
|
name: libarchive-windows-${{ matrix.be }}-${{ github.sha }}
|
|
path: libarchive.zip
|