Skip to content

Commit

Permalink
Add v0.0.12
Browse files Browse the repository at this point in the history
  • Loading branch information
Thomas Applencourt committed Jan 17, 2025
1 parent 8c02226 commit cd1f0b3
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
4 changes: 4 additions & 0 deletions .github/workflows/presubmit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,10 @@ jobs:
run: |
. external/spack/share/spack/setup-env.sh
spack install $SPACK_OPT [email protected] ^ruby
- name: Install thapi v0.0.12
run: |
. external/spack/share/spack/setup-env.sh
spack install $SPACK_OPT [email protected] ^ruby
- name: Install thapi master
run: |
. external/spack/share/spack/setup-env.sh
Expand Down
3 changes: 2 additions & 1 deletion packages/thapi/package.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ class Thapi(AutotoolsPackage):
git = "https://github.com/argonne-lcf/THAPI.git"

version('master', branch='master', preferred=True)
version('0.0.12', tag='v0.0.12')
version('0.0.11', tag='v0.0.11')
version('0.0.10', tag='v0.0.10')
version('0.0.9', tag='v0.0.9')
Expand Down Expand Up @@ -42,7 +43,7 @@ class Thapi(AutotoolsPackage):
depends_on('ruby-cast-to-yaml', type=('build'))
depends_on('[email protected]:0.9', type=('build'), when='@:0.0.10')
depends_on('[email protected]:', type=('build'), when='@0.0.11')
depends_on('[email protected]:', type=('build'), when='@master')
depends_on('[email protected]:', type=('build'), when='@0.0.12:')

depends_on('libiberty+pic')
depends_on('libffi')
Expand Down

0 comments on commit cd1f0b3

Please sign in to comment.