-
Notifications
You must be signed in to change notification settings - Fork 274
[CI] Cleanup .github/ folder #5851
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
Merged
NlightNFotis
merged 3 commits into
diffblue:develop
from
NlightNFotis:cleanup_github_folder
Feb 23, 2021
Merged
Changes from 2 commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,56 +1,22 @@ | ||
# CBMC packages | ||
|
||
This project builds installation packages for the tip of the develop | ||
branch for MacOS, Windows, and Ubuntu. | ||
|
||
There exist installation packages for the latest stable releases of | ||
CBMC on MacOS and Ubuntu. | ||
|
||
On MacOS: | ||
* brew install cbmc | ||
|
||
On Ubuntu: | ||
* sudo apt-get install software-properties-common | ||
* sudo add-apt-repository ppa:mt-debian/cbmc-backports | ||
* sudo apt-get update | ||
* sudo apt-get install cbmc | ||
|
||
This project uses GitHub Actions to build installation packages for | ||
the tip of the develop branch for MacOS, Windows, and Ubuntu each time | ||
new commits is added to develop. The packages reside on GitHub as | ||
artifacts that can be listed using the GitHub Actions API. | ||
|
||
A separate project implements a web page hosted on GitHub Pages that makes | ||
it easy to find the installation package for the tip of develop. | ||
|
||
The stable installation packages describe above for MacOS and Ubuntu | ||
install into the local operating system's equivalent of | ||
/usr/local/bin. | ||
This project builds two kinds of packages: | ||
* cbmc installs into the equvalent of /usr/local/bin | ||
* cbmc-latest installs into the equivalent of /usr/local/cbmc-latest/bin, | ||
and makes it possible to have two copies of cbmc --- a stable release | ||
and a tip of develop --- side-by-side on the same machine. | ||
|
||
For each operatin system: | ||
* The MacOS package is just a tar file of a directory containing the | ||
binaries. The directory should be unpacked and placed in the search | ||
path. Using Homebrew, "brew install cbmc" will install the latest | ||
stable release. These tar files are intended only to distribute the | ||
development versions between stable releases (Homebrew repository | ||
updates of the stable versions are quick). | ||
|
||
* The Windows package is an Microsoft Installer (msi) for Windows 10 | ||
with Visual Studio 2019. It can be installed by double-clicking on the | ||
installer or runnin `msexec /i <filename>`. | ||
|
||
* The Ubuntu package is a Debian package that can be installed with | ||
`dpkg -i <filename>`. There are packages for Ubuntu 18 and Ubuntu 16. | ||
These packages are intended to distribute the development versions | ||
between stable releases, but also to produce the stable packages uploaded | ||
to a Debian or Ubuntu PPA. | ||
|
||
The file packages.yaml defines the workflow for GitHub Actions to build the | ||
packages. Each package is defined by a job that runs in its own | ||
container. The subdirectories contain files and data needed to build | ||
each of the packages. | ||
# CBMC CI infrastructure | ||
|
||
This folder contains implementation and configuration files for | ||
our CI infrastructure on top of Github Actions. Aside from CI, | ||
it also contains packaging and automated release scripts. | ||
|
||
The files in this folder correspond to: | ||
|
||
* `build-and-test-Xen.yaml` -> Build Xen using CBMC tools. | ||
* `csmith.yaml` -> Run 10 randomly generated CSmith tests per Pull Request. | ||
* `doxygen-check.yaml` -> Build project doxygen documentation per Pull Request. | ||
* `pull-request-check-cpplint.sh` -> Script that's called per Pull Request to execute | ||
`cpplint` over changes. | ||
* `pull-request-check-clang-format.sh` -> Script that's called per Pull Request | ||
to execute `clang-format` over changes. | ||
* `pull-request-checks.yaml` -> Configuration file for the Github Actions CI jobs | ||
for the various platforms. | ||
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. ⛏️ Might be nice to have a list of which platforms/build systems we are currently testing on pull requests. |
||
* `regular-release.yaml` -> Configuration file for performing an automated release | ||
every time a tag of a specific form (`cbmc-x.y.z`) is pushed. | ||
* `release-packages.yaml` -> Configuration file for performing building of build | ||
artifacts that are attached to release when it's being made. Invoked when a | ||
regular release is performed. |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.