-
Notifications
You must be signed in to change notification settings - Fork 395
Add Overt #2080
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Add Overt #2080
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,32 @@ | ||
| # Compiler Explorer infra install recipe for Overt. | ||
| # | ||
| # Destination: compiler-explorer/infra:bin/yaml/overt.yaml | ||
| # Docs: https://github.com/compiler-explorer/infra/blob/main/docs/adding_a_compiler.md | ||
| # | ||
| # This file tells CE's build farm where to download each released Overt | ||
| # version and how to lay it out under /opt/compiler-explorer/overt-<version>/. | ||
|
Comment on lines
+6
to
+7
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. We don't have a build farm for this. I don't think this is a useful comment. please remove |
||
| # | ||
| # The release tarball produced by .github/workflows/release.yml has shape: | ||
| # overt-<version>/ | ||
| # bin/overt <- single-file self-contained binary | ||
| # runtime/Overt.Runtime.dll | ||
| # LICENSE | ||
| # README.md | ||
| # VERSION | ||
| # | ||
| # strip_components: 0 keeps the overt-<version>/ prefix so the install path | ||
| # ends up at /opt/compiler-explorer/overt-<version>/bin/overt — matching | ||
| # compiler.overt010.exe in ../config/overt.defaults.properties. | ||
|
|
||
| installers: | ||
| overt: | ||
| type: tarballs | ||
| compression: xz | ||
| url_pattern: https://github.com/paulmooreparks/Overt/releases/download/v{0}/overt-{0}-linux-x64.tar.xz | ||
| dir_pattern: overt-{0} | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. what is |
||
| strip_components: 0 | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. isn't 0 the default? |
||
| check_exe: bin/overt --version | ||
| targets: | ||
| # Add each tagged release here as it ships. CE's install farm re-runs | ||
| # this recipe whenever the list changes. | ||
| - 0.1.0-preview | ||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
No need to explain where this file is or the documentation that refers to it.