Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
Y
yaml-cpp
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
lvzhengyang
yaml-cpp
Commits
9f31491b
Unverified
Commit
9f31491b
authored
Sep 17, 2023
by
Daniel Stonier
Committed by
GitHub
Sep 17, 2023
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
bzlmodded (#1224)
parent
016b2e77
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
34 additions
and
0 deletions
+34
-0
.bazelignore
+1
-0
.github/workflows/build.yml
+19
-0
MODULE.bazel
+14
-0
No files found.
.bazelignore
0 → 100644
View file @
9f31491b
test/gtest-1.11.0
.github/workflows/build.yml
View file @
9f31491b
...
...
@@ -64,3 +64,22 @@ jobs:
cd "${{ github.workspace }}"
bazel test test
bzlmod-build
:
strategy
:
matrix
:
os
:
[
ubuntu-latest
,
windows-latest
,
macos-latest
]
runs-on
:
${{ matrix.os }}
steps
:
-
uses
:
actions/checkout@v2
-
name
:
Build
shell
:
bash
run
:
|
cd "${{ github.workspace }}"
bazel build --enable_bzlmod :all
-
name
:
Test
shell
:
bash
run
:
|
cd "${{ github.workspace }}"
bazel test --enable_bzlmod test
MODULE.bazel
0 → 100644
View file @
9f31491b
"""
yaml-cpp is a YAML parser and emitter in c++ matching the YAML specification.
"""
module(
name = "yaml-cpp",
compatibility_level = 1,
version = "0.8.0",
)
bazel_dep(name = "platforms", version = "0.0.7")
bazel_dep(name = "rules_cc", version = "0.0.8")
bazel_dep(name = "googletest", version = "1.14.0", dev_dependency = True)
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment