diff options
author | Massimiliano Culpo <massimiliano.culpo@gmail.com> | 2019-12-25 09:06:48 +0100 |
---|---|---|
committer | Todd Gamblin <tgamblin@llnl.gov> | 2019-12-25 00:06:48 -0800 |
commit | 2aa8132afd4326684626d2f0043e7006801f9e34 (patch) | |
tree | 66733a9b14a0c6f3da721b2d8e9d80f9b6efddf3 /README.md | |
parent | 61b4ad18374756a261ccd6baccb60990fe04da21 (diff) | |
download | spack-2aa8132afd4326684626d2f0043e7006801f9e34.tar.gz spack-2aa8132afd4326684626d2f0043e7006801f9e34.tar.bz2 spack-2aa8132afd4326684626d2f0043e7006801f9e34.tar.xz spack-2aa8132afd4326684626d2f0043e7006801f9e34.zip |
Migrate build tests from Travis to Github Actions (#13967)
This PR moves build smoke tests from TravisCI and migrates them to Github Actions. The result is that build tests are performed in parallel with unit tests and they don't hog additional resources on Travis. The workflow will not run if a PR only changes packages in the built-in repository, but will always run on pushes to develop or master.
* Removed build tests from Travis and passed them to Github Actions
* Store ~/.ccache in Github Actions cache
* Add filters on paths and make sure this workflow don't run
* Use paths-ignore and exclude only files in the built-in repo
* Added a badge to README.md
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -1,6 +1,7 @@ # <img src="https://cdn.rawgit.com/spack/spack/develop/share/spack/logo/spack-logo.svg" width="64" valign="middle" alt="Spack"/> Spack [![Build Status](https://travis-ci.org/spack/spack.svg?branch=develop)](https://travis-ci.org/spack/spack) +[![](https://github.com/spack/spack/workflows/Build%20Tests%20Linux/badge.svg)](https://github.com/spack/spack/actions) [![codecov](https://codecov.io/gh/spack/spack/branch/develop/graph/badge.svg)](https://codecov.io/gh/spack/spack) [![Read the Docs](https://readthedocs.org/projects/spack/badge/?version=latest)](https://spack.readthedocs.io) [![Slack](https://spackpm.herokuapp.com/badge.svg)](https://spackpm.herokuapp.com) |