Skip to content

Commit

Permalink
Merge pull request #9 from mohamed-barakat/devel
Browse files Browse the repository at this point in the history
applied PackageJanitor
  • Loading branch information
mohamed-barakat authored Jun 29, 2023
2 parents c1bb57a + d181e5f commit 98877fa
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/Tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ jobs:
if [ -d "CategoricalTowers/Toposes" ]; then make -C "CategoricalTowers/Toposes" doc; fi
- name: Test HeckeCategories
run: |
make -C HeckeCategories -j $(nproc) --output-sync ci-test
make -C HeckeCategories --trace -j $(nproc) --output-sync ci-test
- name: Release package or simulate release
run: |
cd HeckeCategories
Expand Down
2 changes: 1 addition & 1 deletion PackageInfo.g
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ SetPackageInfo( rec(

PackageName := "HeckeCategories",
Subtitle := "Categorification of Hecke algebras",
Version := "2023.03-01",
Version := "2023.06-01",

Date := (function ( ) if IsBound( GAPInfo.SystemEnvironment.GAP_PKG_RELEASE_DATE ) then return GAPInfo.SystemEnvironment.GAP_PKG_RELEASE_DATE; else return Concatenation( ~.Version{[ 1 .. 4 ]}, "-", ~.Version{[ 6, 7 ]}, "-01" ); fi; end)( ),
License := "GPL-2.0-or-later",
Expand Down
5 changes: 4 additions & 1 deletion dev/upload_codecov.sh
Original file line number Diff line number Diff line change
Expand Up @@ -23,4 +23,7 @@ shasum -a 256 -c codecov.SHA256SUM

# execute
chmod +x codecov
./codecov -Z -v -s ../ || (sleep 60; ./codecov -Z -v -s ../ || (sleep 60; ./codecov -Z -v -s ../))
while ! ./codecov -Z -v -s ../; do
echo "Codecov upload failed, retrying in 60s"
sleep 60
done

0 comments on commit 98877fa

Please sign in to comment.