mirror of
https://github.com/xerial/snappy-java.git
synced 2025-08-22 10:28:17 +02:00
Bumps [peter-evans/create-pull-request](https://github.com/peter-evans/create-pull-request) from 6 to 7. - [Release notes](https://github.com/peter-evans/create-pull-request/releases) - [Commits](https://github.com/peter-evans/create-pull-request/compare/v6...v7) --- updated-dependencies: - dependency-name: peter-evans/create-pull-request 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>
49 lines
1.2 KiB
YAML
49 lines
1.2 KiB
YAML
name: Build Native
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
push:
|
|
branches:
|
|
- master
|
|
- 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@v4
|
|
- 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
|