Skip to content

Commit

Permalink
update CI workflow for extra disk space
Browse files Browse the repository at this point in the history
test removal of potentially unneeded packages to maximize available disk space
  • Loading branch information
marc1uk authored Feb 6, 2024
1 parent 062a331 commit addad85
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion .github/workflows/tempbuild.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,13 @@ jobs:
- name: prerequisits
run: yum install -y git make gcc-c++ which wget
- name: build
run: echo `pwd` && ln -s /ToolAnalysis/ToolDAQ $PWD/ToolDAQ && ls -l && ls -l ./ToolDAQ && source ./Setup.sh && make clean && make
run:
# Workaround to provide additional free space for testing.
# https://github.com/actions/virtual-environments/issues/2840
sudo rm -rf /usr/share/dotnet
sudo rm -rf /opt/ghc
sudo rm -rf "/usr/local/share/boost"
sudo rm -rf "$AGENT_TOOLSDIRECTORY"
echo `pwd` && ln -s /ToolAnalysis/ToolDAQ $PWD/ToolDAQ && ls -l && ls -l ./ToolDAQ && source ./Setup.sh && make clean && make
- name: test
run : source ./Setup.sh && ./Analyse

0 comments on commit addad85

Please sign in to comment.