Skip to content

Commit

Permalink
Parameterise infr_apps version
Browse files Browse the repository at this point in the history
  • Loading branch information
xross committed Oct 14, 2024
1 parent 45bf957 commit 3e6d86b
Show file tree
Hide file tree
Showing 9 changed files with 43 additions and 112 deletions.
17 changes: 0 additions & 17 deletions .github/ISSUE_TEMPLATE/application-note-not-compliant.md

This file was deleted.

18 changes: 0 additions & 18 deletions .github/ISSUE_TEMPLATE/example-not-compliant.md

This file was deleted.

10 changes: 0 additions & 10 deletions .github/ISSUE_TEMPLATE/missing-application-note.md

This file was deleted.

10 changes: 0 additions & 10 deletions .github/ISSUE_TEMPLATE/missing-c-api.md

This file was deleted.

10 changes: 0 additions & 10 deletions .github/ISSUE_TEMPLATE/missing-xcore-test.md

This file was deleted.

16 changes: 0 additions & 16 deletions .github/ISSUE_TEMPLATE/test-not-compliant.md

This file was deleted.

13 changes: 0 additions & 13 deletions .github/ISSUE_TEMPLATE/top-level-readme-not-compliant.md

This file was deleted.

54 changes: 37 additions & 17 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,22 +1,42 @@
**/.build*/*
**/bin/*
*.o
*.xe
# Tmp files & logs
*.settings
*.bin
*.zip
*.log
*.vcd
*.s
*.swp
*.*~
*.xmt
*.swo
*.swn
*~
*.DS_Store

# Python
*.pyc
**/*.egg-info/
**/.venv*/

# XMOS temp files
**/*build*/*
*/bin/*
**/flash_bin_node*
**/fw-*
**/s2l-*
**/spanning-xn-*
**/target-xn*
*.xi
*.o
*.i
*.a
**/_build/
**/run_*.log
**/pdf/*
**/html/*
**/.settings/*
*.pyc
**/test_results.csv
**/.venv/**
*.d
*.decouple
*.pca.xml
**/CMakeFiles/*

# XMOS binaries
*.xe

# waf build files
.lock-waf_*
.waf-*/
build/
# Built documentation
doc/_build/pdf/*.pdf
**/doc/pdf/*.pdf
7 changes: 6 additions & 1 deletion Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,11 @@ pipeline {
defaultValue: 'v6.1.2',
description: 'The xmosdoc version'
)
string(
name: 'INFR_APPS_VERSION',
defaultValue: 'v2.0.1',
description: 'The infr_apps version'
)
}
stages {
stage('Build') {
Expand All @@ -49,7 +54,7 @@ pipeline {
buildDocs()
}
}
runLibraryChecks("${WORKSPACE}/${REPO}", "v2.0.1")
runLibraryChecks("${WORKSPACE}/${REPO}", "${params.INFR_APPS_VERSION}")
}
}
}
Expand Down

0 comments on commit 3e6d86b

Please sign in to comment.