Skip to content

Commit d642f39

Browse files
Copilotbobuhiro11
andauthored
Update to latest DevStack commit to fix nova_api database issue (#34)
And add aggressive disk space cleanup to fix build failure Signed-off-by: Nobuhiro MIKI <nob@bobuhiro11.net> Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com> Co-authored-by: bobuhiro11 <1819077+bobuhiro11@users.noreply.github.com>
1 parent 4abf8c8 commit d642f39

3 files changed

Lines changed: 12 additions & 8 deletions

File tree

.github/workflows/action.yaml

Lines changed: 10 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -17,12 +17,16 @@ jobs:
1717
test:
1818
runs-on: ubuntu-24.04
1919
steps:
20-
- name: Remove unused files
21-
run: |
22-
sudo rm -rf /usr/share/dotnet
23-
sudo rm -rf /opt/ghc
24-
sudo rm -rf "/usr/local/share/boost"
25-
sudo rm -rf "$AGENT_TOOLSDIRECTORY"
20+
- name: Free Disk Space (Ubuntu)
21+
uses: jlumbroso/free-disk-space@v1.3.1
22+
with:
23+
tool-cache: false
24+
android: true
25+
dotnet: true
26+
haskell: true
27+
large-packages: true
28+
docker-images: true
29+
swap-storage: true
2630
- uses: actions/checkout@v2
2731
- name: Install docker-compose
2832
uses: ndeloof/install-compose-action@v0.0.1

compute/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ FROM ubuntu:24.04
22

33
EXPOSE 80 5000 8773 8774 8775 8776 9292
44
ENV DEBIAN_FRONTEND=noninteractive
5-
ENV DEVSTACK_COMMIT=608ae718fca61e557b315f87900a54a7fb40b07e
5+
ENV DEVSTACK_COMMIT=a05d26ebc4ca81ccf1810c9c203143db552c28cb
66

77
ENV OS_REGION_NAME=RegionOne
88
ENV OS_PROJECT_DOMAIN_ID=default

controller/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ FROM ubuntu:24.04
22

33
EXPOSE 80 5000 8773 8774 8775 8776 9292
44
ENV DEBIAN_FRONTEND=noninteractive
5-
ENV DEVSTACK_COMMIT=608ae718fca61e557b315f87900a54a7fb40b07e
5+
ENV DEVSTACK_COMMIT=a05d26ebc4ca81ccf1810c9c203143db552c28cb
66

77
ENV OS_REGION_NAME=RegionOne
88
ENV OS_PROJECT_DOMAIN_ID=default

0 commit comments

Comments
 (0)