Skip to content

Commit fa7eb3a

Browse files
committed
Remove Geant4 in x86 tests
1 parent 6e6077c commit fa7eb3a

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

.github/workflows/ci.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,11 +50,15 @@ jobs:
5050
arch: ${{ matrix.arch }}
5151
- uses: julia-actions/cache@v2
5252
- name: Add LegendJuliaRegistry
53-
run: julia -e 'using Pkg; Pkg.Registry.add(Pkg.RegistrySpec(url = "https://github.com/JuliaRegistries/General")); Pkg.Registry.add(Pkg.RegistrySpec(url = "https://github.com/legend-exp/LegendJuliaRegistry"))'
53+
run: julia -e 'using Pkg; Pkg.Registry.add("General"); Pkg.Registry.add(Pkg.RegistrySpec(url = "https://github.com/legend-exp/LegendJuliaRegistry"))'
5454
shell: bash
5555
- uses: julia-actions/julia-buildpkg@v1
5656
env:
5757
PYTHON: 'Conda'
58+
- name: Remove Geant4 on x86
59+
run: julia --project="test" -e 'using Pkg; Pkg.rm("Geant4")'
60+
shell: bash
61+
if: matrix.arch == 'x86'
5862
- uses: julia-actions/julia-runtest@v1
5963
with:
6064
coverage: ${{ matrix.version == '1' && matrix.os == 'ubuntu-latest' && matrix.arch == 'x64' }}

0 commit comments

Comments
 (0)