File tree 1 file changed +17
-0
lines changed
.github/actions/run-in-docker-action
1 file changed +17
-0
lines changed Original file line number Diff line number Diff line change 18
18
echo "$var" >> "$GITHUB_ENV"
19
19
done
20
20
echo "MAKEFLAGS=-j$(($(nproc) + 1))" >> "$GITHUB_ENV"
21
+ shell : bash
21
22
22
23
- name : Set up Docker Buildx
23
24
uses : docker/setup-buildx-action@v2
42
43
git config --global --add safe.directory ${{ github.workspace }} && \
43
44
./ci/cirrus.sh \
44
45
"
46
+ shell : bash
45
47
46
48
- name : tests.log
47
49
run : >
52
54
${{ inputs.tag }} bash -c " \
53
55
cat tests.log || true \
54
56
"
57
+ shell : bash
55
58
if : ${{ always() }}
59
+
56
60
- name : noverify_tests.log
57
61
run : >
58
62
docker run \
62
66
${{ inputs.tag }} bash -c " \
63
67
cat noverify_tests.log || true \
64
68
"
69
+ shell : bash
65
70
if : ${{ always() }}
71
+
66
72
- name : exhaustive_tests.log
67
73
run : >
68
74
docker run \
72
78
${{ inputs.tag }} bash -c " \
73
79
cat exhaustive_tests.log || true \
74
80
"
81
+ shell : bash
75
82
if : ${{ always() }}
83
+
76
84
- name : ctime_tests.log
77
85
run : >
78
86
docker run \
83
91
cat ctime_tests.log || true \
84
92
"
85
93
if : ${{ always() }}
94
+ shell : bash
95
+
86
96
- name : bench.log
87
97
run : >
88
98
docker run \
92
102
${{ inputs.tag }} bash -c " \
93
103
cat bench.log || true \
94
104
"
105
+ shell : bash
95
106
if : ${{ always() }}
107
+
96
108
- name : config.log
97
109
run : >
98
110
docker run \
@@ -102,7 +114,9 @@ runs:
102
114
${{ inputs.tag }} bash -c " \
103
115
cat config.log || true \
104
116
"
117
+ shell : bash
105
118
if : ${{ always() }}
119
+
106
120
- name : test_env.log
107
121
run : >
108
122
docker run \
@@ -112,7 +126,9 @@ runs:
112
126
${{ inputs.tag }} bash -c " \
113
127
cat test_env.log || true \
114
128
"
129
+ shell : bash
115
130
if : ${{ always() }}
131
+
116
132
- name : env
117
133
run : >
118
134
docker run \
@@ -122,4 +138,5 @@ runs:
122
138
${{ inputs.tag }} bash -c " \
123
139
env \
124
140
"
141
+ shell : bash
125
142
if : ${{ always() }}
You can’t perform that action at this time.
0 commit comments