Skip to content

Commit a1a4984

Browse files
committed
update Tests.yml
1 parent 369a073 commit a1a4984

File tree

3 files changed

+5
-12
lines changed

3 files changed

+5
-12
lines changed

.github/workflows/Tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ jobs:
9595
TOKEN="${{ secrets.GITHUB_TOKEN }}" ./dev/simulate_dist.sh; \
9696
fi
9797
- name: Upload code coverage
98-
if: github.event_name != 'schedule' && matrix.image == 'ghcr.io/homalg-project/gap-docker-master:latest'
98+
if: github.event_name != 'schedule' && matrix.image == 'ghcr.io/homalg-project/gap-docker:latest'
9999
env:
100100
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
101101
run: |

dev/ci_gaprc

Lines changed: 3 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
SetUserPreference( "ShortBanners", true );
2+
13
# Prefer GAPInfo.UserGapRoot over other package directories to prevent accidentally testing package
24
# versions distributed with GAP.
35

@@ -7,16 +9,7 @@ FORCE_LOADING_FROM_USER_GAP_ROOT := function ( )
79
package_info := GAPInfo.PackagesInfo.(name);
810
pos := PositionProperty( package_info, info -> StartsWith( info.InstallationPath, GAPInfo.UserGapRoot ) );
911
if pos <> fail then
10-
# work around https://github.com/gap-system/gap/pull/5178
11-
if IsBound( GAPInfo.PackagesLoaded.(name) ) then
12-
if StartsWith( GAPInfo.PackagesLoaded.(name)[1], GAPInfo.UserGapRoot ) then
13-
continue;
14-
else
15-
Error( "package already loaded at ", GAPInfo.PackagesLoaded.(name)[1] );
16-
fi;
17-
else
18-
SetPackagePath( name, package_info[pos].InstallationPath );
19-
fi;
12+
SetPackagePath( name, package_info[pos].InstallationPath );
2013
fi;
2114
od;
2215
end;

dev/release-gap-package

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -722,7 +722,7 @@ fi
722722
# BSD and GNU make.
723723
for f in ./*/*.htm* ; do
724724
sed \
725-
-e 's;href="../../../doc/;href="https://www.gap-system.org/Manuals/doc/;g' \
725+
-e 's;href="../../../doc/;href="https://docs.gap-system.org/doc/;g' \
726726
-e 's;href="../../../pkg/GAPDoc[^\/]*/doc/;href="http://www.math.rwth-aachen.de/~Frank.Luebeck/GAPDoc/doc/;g' \
727727
-e 's;href="../../../pkg/gapdoc[^\/]*/doc/;href="http://www.math.rwth-aachen.de/~Frank.Luebeck/GAPDoc/doc/;g' \
728728
"$f" > "$f.bak"

0 commit comments

Comments
 (0)