diff options
author | Carlos O'Ryan <coryan@users.noreply.github.com> | 2020-01-15T22·44-0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-01-15T22·44-0500 |
commit | 20009f59de903d5a70038adee308020a82e3ecad (patch) | |
tree | 864f0ab8dc88b48661be0bf10f281d1621737a19 /.dockerignore | |
parent | 7abccfa1ecc1a0d45673c25e4cfc33ebfb90c74e (diff) |
ci: verify pkg-config files actually work (#30)
Change the CI builds to verify the pkg-config files we create actually work. Some improvements in the `.*ignore` files.
Diffstat (limited to '.dockerignore')
-rw-r--r-- | .dockerignore | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/.dockerignore b/.dockerignore new file mode 100644 index 000000000000..4b7b2c0bd276 --- /dev/null +++ b/.dockerignore @@ -0,0 +1,22 @@ +# Common build output directory names +.build/ +_build/ +build-output/ +cmake-out/ + +# Common bazel output directories +bazel-* + +# Backup files for Emacs +*~ + +# Ignore IDEA / IntelliJ files +.idea/ +cmake-build-*/ + +# This is a staging directory used to upload the documents to gihub.io +github-io-staging/ + +# Ignore Visual Studio Code files +.vsbuild/ +.vscode/ |