16
16
runs-on : ${{ matrix.os }}
17
17
steps :
18
18
- name : " Checkout repository"
19
- uses : actions/checkout@v3
19
+ uses : actions/checkout@v4.1.1
20
20
- name : " Test building container esp32s3"
21
21
run : |
22
22
set -euxo pipefail
46
46
runs-on : ${{ matrix.os }}
47
47
steps :
48
48
- name : " Checkout repository"
49
- uses : actions/checkout@v3
49
+ uses : actions/checkout@v4.1.1
50
50
- name : " Test building fuse blower container esp32s2fb"
51
51
run : |
52
52
set -euxo pipefail
@@ -66,10 +66,17 @@ jobs:
66
66
runs-on : ${{ matrix.os }}
67
67
steps :
68
68
- name : " Checkout repository"
69
- uses : actions/checkout@v3
69
+ uses : actions/checkout@v4.1.1
70
70
- name : " Test building container esp32s2zephyr"
71
71
run : |
72
72
set -euxo pipefail
73
+
74
+ # "Out of disk space" workaround
75
+ sudo rm -rf /usr/share/dotnet
76
+ sudo rm -rf /opt/ghc
77
+ sudo rm -rf "/usr/local/share/boost"
78
+ sudo rm -rf "$AGENT_TOOLSDIRECTORY"
79
+
73
80
cd ${{ github.workspace }}/esp32s2
74
81
docker build -f Dockerfile.esp32s2_mcuboot_zephyr \
75
82
--build-arg SBV2_PRIVATE_KEY="sbv2_private_dev.pem" \
86
93
runs-on : ${{ matrix.os }}
87
94
steps :
88
95
- name : " Checkout repository"
89
- uses : actions/checkout@v3
96
+ uses : actions/checkout@v4.1.1
90
97
- name : " Test building fuse blower container esp32s2fb"
91
98
run : |
92
99
set -euxo pipefail
@@ -106,10 +113,17 @@ jobs:
106
113
runs-on : ${{ matrix.os }}
107
114
steps :
108
115
- name : " Checkout repository"
109
- uses : actions/checkout@v3
116
+ uses : actions/checkout@v4.1.1
110
117
- name : " Test building container esp32zephyr"
111
118
run : |
112
119
set -euxo pipefail
120
+
121
+ # "Out of disk space" workaround
122
+ sudo rm -rf /usr/share/dotnet
123
+ sudo rm -rf /opt/ghc
124
+ sudo rm -rf "/usr/local/share/boost"
125
+ sudo rm -rf "$AGENT_TOOLSDIRECTORY"
126
+
113
127
cd ${{ github.workspace }}/esp32
114
128
docker build -f Dockerfile.esp32_mcuboot_zephyr \
115
129
--build-arg SBV2_PRIVATE_KEY="sbv2_private_dev.pem" \
0 commit comments