File tree 5 files changed +6
-19
lines changed
5 files changed +6
-19
lines changed Original file line number Diff line number Diff line change 18
18
- uses : actions/checkout@v1
19
19
- name : Disk Cleanup
20
20
run : ./disk_cleanup.sh
21
- - name : Output Disk size
22
- run : df -hT
23
21
- name : Build
24
- run : make USE_CCACHE=0 ${{ matrix.name }}
25
- timeout-minutes : 120
26
- - name : Output Disk size
27
- run : df -hT
22
+ run : make -C docker ${{ matrix.name }}
28
23
- name : Upload artifact
29
24
uses : actions/upload-artifact@v1
30
25
with :
35
30
runs-on : macos-latest
36
31
steps :
37
32
- uses : actions/checkout@v1
38
- - name : Output Disk size
39
- run : df -h
40
33
- name : Build
41
34
run : make USE_CCACHE=0 macos-x64
42
- timeout-minutes : 120
43
- - name : Output Disk size
44
- run : df -h
45
35
- name : Upload artifact
46
36
uses : actions/upload-artifact@v1
47
37
with :
55
45
- name : Disk Cleanup
56
46
run : .\disk_cleanup.bat
57
47
- name : Build
58
- run : .\build.bat
59
- timeout-minutes : 120
48
+ run : .\build.windows.bat
60
49
- name : Upload artifact
61
50
uses : actions/upload-artifact@v1
62
51
with :
67
56
runs-on : macos-latest
68
57
steps :
69
58
- uses : actions/checkout@v1
70
- - name : Output Disk size
71
- run : df -h
72
59
- name : Build
73
60
run : make USE_CCACHE=0 ios
74
- timeout-minutes : 120
75
- - name : Output Disk size
76
- run : df -h
77
61
- name : Upload artifact
78
62
uses : actions/upload-artifact@v1
79
63
with :
Load Diff This file was deleted.
Original file line number Diff line number Diff line change
1
+ powershell -NoProfile -ExecutionPolicy Unrestricted .\build.windows.ps1
File renamed without changes.
Original file line number Diff line number Diff line change 1
1
#! /bin/bash
2
2
3
+ df -h
4
+
3
5
# Cache 済み Docker Image の削除
4
6
docker rmi $( docker images -q -a)
5
7
@@ -9,3 +11,4 @@ sudo rm -rf /usr/local/share/boost
9
11
# .Net Core の削除
10
12
sudo rm -rf /usr/share/dotnet
11
13
14
+ df -h
You can’t perform that action at this time.
0 commit comments