1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-04-29 19:45:01 +02:00

[releng] Exclude Makefiles from compare-and-replace check for DAP

The generated elf file is still checked, but the makefiles are auto-
generated and have full path names in them, meaning that different
Jenkins jobs (with different workspace paths) cause a difference.

Change-Id: Iaa2eab80ba4b116c06ff1f765160a8580c0dafff
This commit is contained in:
Jonah Graham 2020-10-06 11:33:48 -04:00
parent 16750b6528
commit 6084acb880

View file

@ -38,6 +38,21 @@
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.eclipse.tycho</groupId>
<artifactId>tycho-p2-plugin</artifactId>
<configuration>
<ignoredPatterns>
<pattern>META-INF/ECLIPSE_.RSA</pattern>
<pattern>META-INF/ECLIPSE_.SF</pattern>
<pattern>about.mappings</pattern>
<pattern>debug-servers/node_modules/cdt-gdb-adapter/build/Makefile</pattern>
<pattern>debug-servers/node_modules/cdt-gdb-adapter/build/pty.target.mk</pattern>
<pattern>debug-servers/node_modules/cdt-gdb-adapter/build/Release/.deps/Release/obj.target/pty/src/native/pty.o.d</pattern>
</ignoredPatterns>
</configuration>
</plugin>
</plugins>
</build>
</project>