Skip to content

Commit 1495f61

Browse files
committed
Try to do some cleanup
1 parent d9dd818 commit 1495f61

File tree

1 file changed

+3
-34
lines changed

1 file changed

+3
-34
lines changed

azure-pipelines.yml

+3-34
Original file line numberDiff line numberDiff line change
@@ -39,38 +39,7 @@ jobs:
3939
clean: true
4040
- bash: |
4141
set -e
42-
$(JULIA) -e 'using Pkg; Pkg.Registry.update(); Pkg.instantiate()'
43-
$(JULIA) -e 'using BinaryBuilder; BinaryBuilder.versioninfo()'
44-
$(JULIA) -e 'using Pkg; Pkg.status(; mode=PKGMODE_MANIFEST)'
42+
df -H .
43+
$(JULIA) -e 'using Pkg, Dates; Pkg.gc(; collect_delay=Dates.Day(1))'
44+
df -H .
4545
name: SystemInfo
46-
47-
- job: Test
48-
dependsOn: Info
49-
timeoutInMinutes: 120
50-
strategy:
51-
matrix:
52-
Privileged_SquashFS:
53-
BINARYBUILDER_RUNNER: privileged
54-
BINARYBUILDER_USE_SQUASHFS: true
55-
Unprivileged_Unpacked:
56-
BINARYBUILDER_RUNNER: unprivileged
57-
BINARYBUILDER_USE_SQUASHFS: false
58-
BINARYBUILDER_FULL_SHARD_TEST: true
59-
Docker_Unpacked:
60-
BINARYBUILDER_RUNNER: docker
61-
BINARYBUILDER_USE_SQUASHFS: false
62-
63-
steps:
64-
- bash: |
65-
set -e
66-
$(JULIA) --check-bounds=yes --inline=yes -e 'using Pkg; Pkg.Registry.update(); Pkg.instantiate(); Pkg.test(coverage=true)'
67-
$(JULIA) -e 'using Pkg; Pkg.add("Coverage"); using Coverage; Codecov.submit(process_folder())' || true
68-
name: Test
69-
70-
- bash: |
71-
for dir in $(find ${TMPDIR} -name .mounts); do
72-
sudo umount ${dir}/* || true
73-
done
74-
rm -rf ${TMPDIR}/jl_* || true
75-
name: Cleanup
76-
condition: always()

0 commit comments

Comments
 (0)