Skip to content

Commit

Permalink
Add github workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
RyeMutt committed Jun 18, 2024
1 parent cedf641 commit cb00ac3
Show file tree
Hide file tree
Showing 4 changed files with 56 additions and 0 deletions.
7 changes: 7 additions & 0 deletions .github/dependabot.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
version: 2
updates:

- package-ecosystem: github-actions
directory: /
schedule:
interval: monthly
18 changes: 18 additions & 0 deletions .github/release.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
changelog:
exclude:
labels:
- ignore-for-release
authors:
- dependabot
categories:
- title: Breaking Changes 🛠
labels:
- semver-major
- breaking-change
- title: New Features 🎉
labels:
- semver-minor
- enhancement
- title: Other Changes
labels:
- '*'
25 changes: 25 additions & 0 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: Build
on: [push]
jobs:
build:
strategy:
matrix:
os: [windows-2022, macos-14, ubuntu-22.04]
addrsize: ["64"]
runs-on: ${{ matrix.os }}
steps:
- uses: AlchemyViewer/action-autobuild@v4
with:
addrsize: ${{ matrix.addrsize }}
build-variables-repo: alchemyviewer/build-variables
build-variables-ref: alchemy
apt-packages: autoconf automake autopoint gettext
brew-packages: ninja
release:
needs: build
runs-on: [ubuntu-latest]
if: startsWith(github.ref, 'refs/tags/v')
steps:
- uses: alchemyviewer/action-autobuild-release@v4
with:
public: true
6 changes: 6 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
# 3p-libxml2

[Autobuild][] packaged [libxml2][].

[Autobuild]: https://github.com/secondlife/autobuild
[libxml2]: https://gitlab.gnome.org/GNOME/libxml2/-/releases

0 comments on commit cb00ac3

Please sign in to comment.