8 Commits
v1.0 ... master

Author SHA1 Message Date
Ole Morud
6d0c0875e2 append "(deprecated)" to action name 2023-06-29 10:25:56 +02:00
Ole Morud
4f4ec21ba1 Add warning about new upstream in README 2023-06-29 10:12:40 +02:00
Ole Morud
545126f0e8 Update README.md 2023-03-24 10:04:52 +01:00
Ole Morud
0005e194cc Update README.md 2023-03-24 10:02:25 +01:00
Ole Morud
17624185be [docs] Update image in README.md 2023-03-17 13:44:04 +01:00
Ole Morud
bf055241d4 Update README.md 2023-03-17 13:42:31 +01:00
Ole Morud
a9f3482630 [docs] Update README.md 2023-03-16 14:04:34 +01:00
Ole Morud
04fba30579 [docs] Update README.md 2023-03-16 14:03:13 +01:00
2 changed files with 22 additions and 5 deletions

View File

@@ -1,19 +1,32 @@
# GCC problem matcher
# GCC problem matcher (no longer maintained)
> **Warning**
> This repository is no longer maintained, the new upstream is: https://github.com/root-project/gcc-problem-matcher-improved
[![FOSSA Status](https://app.fossa.com/api/projects/git%2Bgithub.com%2Folemorud%2Fgcc-problem-matcher.svg?type=shield)](https://app.fossa.com/projects/git%2Bgithub.com%2Folemorud%2Fgcc-problem-matcher?ref=badge_shield)
Creates annotations for warnings and errors in gcc builds.
![image](https://user-images.githubusercontent.com/82065181/225907856-336fa631-6520-44ce-bdf5-cf5780e45e40.png)
## Inputs
### build-directory
**Optional** Base directory for build. For builds done in a subdirectory, this should match that directory, otherwise the pattern match will not be able to point to the correct file.
**Optional** Directory the build is running in. Matched errors will not be able to point to the correct file or create warnings in the `Files changed` overview unless this is correct.
## Example usage
Create annotations for builds done in the root directory
Create annotations for builds done in the default directory. Add this anywhere before starting the build.
```yaml
- uses: olemorud/gcc-problem-matcher@v1.0
- name: Build
run: |
...
```
Create annotations for builds done in directory `/workspace/build/`
@@ -22,4 +35,8 @@ Create annotations for builds done in directory `/workspace/build/`
- uses: olemorud/gcc-problem-matcher@master
with:
build-directory: /workspace/build/
- name: Build
run: |
...
```

View File

@@ -1,6 +1,6 @@
name: GCC Problem Matcher Improved
name: GCC Problem Matcher Improved (deprecated)
description: Get annotations for warnings and errors on builds using gcc
description: new upstream: https://github.com/root-project/gcc-problem-matcher-improved
author: Ole Morud