Skip to content
Snippets Groups Projects
Commit ba9406ca authored by Frank Steinberg's avatar Frank Steinberg
Browse files

Initial steps towards CI.

parent a7b66c6e
No related branches found
No related tags found
No related merge requests found
image: "ubuntu"
before_script:
- apt-get update -qq && apt-get install -y -qq make curl libxml2-utls xsltproc
stages:
- build
- test
build:
stage: build
script:
- make
test:
stage: test
script:
- make test
...@@ -18,6 +18,10 @@ orig: bjcp-2015-styleguide-orig.xml xsl/bjcp-2015-styleguide-split.xsl ...@@ -18,6 +18,10 @@ orig: bjcp-2015-styleguide-orig.xml xsl/bjcp-2015-styleguide-split.xsl
bjcp-2015-styleguide-de.xml: orig de xsl/bjcp-2015-styleguide-translate.xsl bjcp-2015-styleguide-de.xml: orig de xsl/bjcp-2015-styleguide-translate.xsl
xsltproc --stringparam lang de xsl/bjcp-2015-styleguide-translate.xsl bjcp-2015-styleguide-orig.xml > bjcp-2015-styleguide-de.xml xsltproc --stringparam lang de xsl/bjcp-2015-styleguide-translate.xsl bjcp-2015-styleguide-orig.xml > bjcp-2015-styleguide-de.xml
test: bjcp-2015-styleguide-orig.xml bjcp-2015-styleguide-de.xml
xmllint --noout bjcp-2015-styleguide-orig.xml
xmllint --noout bjcp-2015-styleguide-de.xml
clean: clean:
rm -rf cache orig rm -rf cache orig
rm -f bjcp-2015-styleguide-orig.xml rm -f bjcp-2015-styleguide-orig.xml
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment