mirror of
https://github.com/xerial/snappy-java.git
synced 2025-09-01 07:18:13 +02:00
Bumps [actions/checkout](https://github.com/actions/checkout) from 4 to 5. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v4...v5) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
48 lines
1.2 KiB
YAML
48 lines
1.2 KiB
YAML
name: Build Native
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
push:
|
|
branches:
|
|
- main
|
|
paths:
|
|
- 'src/main/resources/org/xerial/snappy/VERSION'
|
|
- 'Makefile'
|
|
- 'Makefile.common'
|
|
- '**/*.h'
|
|
- '**/*.cpp'
|
|
- .github/workflows/build-native.yml
|
|
pull_request:
|
|
paths:
|
|
- 'src/main/resources/org/xerial/snappy/VERSION'
|
|
- 'Makefile'
|
|
- 'Makefile.common'
|
|
- '**/*.h'
|
|
- '**/*.cpp'
|
|
|
|
jobs:
|
|
build:
|
|
permissions:
|
|
contents: write
|
|
pull-requests: write
|
|
name: Build native libraries
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v5
|
|
- name: Setup cmake
|
|
uses: jwlawson/actions-setup-cmake@v2.0
|
|
with:
|
|
cmake-version: '3.16.x'
|
|
- name: Build native libraries
|
|
run: make clean-native native-all
|
|
env:
|
|
OCI_EXE: docker
|
|
- name: Create Pull Request
|
|
if: ${{ github.event_name != 'pull_request' }}
|
|
uses: peter-evans/create-pull-request@v7
|
|
with:
|
|
title: Update native libraries
|
|
commit-message: Update native libraries for ${{ github.sha }}
|
|
branch: update-native-libs
|
|
labels: library-update
|