Skip to content

Commit

Permalink
initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
TendTo committed Jun 9, 2024
0 parents commit 3fc8b10
Show file tree
Hide file tree
Showing 35 changed files with 3,858 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: CI

on:
push:
branches: [main]
pull_request:
branches: [main]

jobs:
examples:
strategy:
matrix:
os: [ubuntu-latest, windows-latest]
subdir: [base, doxyfile, latex, nested]
runs-on: ${{ matrix.os }}

steps:
- uses: actions/checkout@v4
- name: Build ${{ matrix.subdir }}
run: bazel build //${{ matrix.subdir }}:doxygen
working-directory: examples
- name: Check output
uses: thebinaryfelix/[email protected]
with:
files: "examples/bazel-bin/${{ matrix.subdir }}/html/index.html"
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
bazel-*
.vscode/
MODULE.bazel.lock
7 changes: 7 additions & 0 deletions BUILD.bazel
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
"""rules_doxygen BUILD file"""

exports_files([
"Doxyfile.template",
"doxygen.BUILD.bazel",
"doxygen.bzl",
])
19 changes: 19 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
# Changelog

All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [1.0.0]

### Added

- Initial release

## [NEXT.VERSION]

- TODO

[1.0.0]: https://github.com/TendTo/rules_doxygen/tree/1.0.0
[NEXT.VERSION]: https://github.com/TendTo/rules_doxygen/compare/1.0.0...HEAD
Loading

0 comments on commit 3fc8b10

Please sign in to comment.