Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .github/workflows/build_and_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,9 @@ jobs:
runs-on: "ubuntu-22.04"
steps:
- uses: actions/checkout@v4
- name: Add system tools
run: |
sudo apt-get update && sudo apt-get install libgtest-dev help2man
- name: Build (make all)
run: |
make all
Expand Down
14 changes: 11 additions & 3 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
**/*.a
**/*.dylib
*.dSYM
.makebuild/

jsonnet
jsonnetfmt
Expand All @@ -17,17 +18,24 @@ libjsonnet.so
libjsonnet.so.*
libjsonnet++.so
libjsonnet++.so.*
libjsonnet_test_file
libjsonnet_test_snippet
libjsonnet_test_locale
**/core.*
**/vgcore
**/vgcore.*
core/std.jsonnet.h
stdlib/to_c_array
Makefile.depend
Makefile.depend.bak
bazel-*

libjsonnet_test_file
libjsonnet_test_snippet
libjsonnet_test_locale
libjsonnet_test
libjsonnet++_test
unicode_test
lexer_test
parser_test

**/*.tfstate
**/*.tfstate.backup

Expand Down
Loading