File tree 4 files changed +23
-8
lines changed
4 files changed +23
-8
lines changed Original file line number Diff line number Diff line change 1
- 0.12.5-144-22bb1b -native
1
+ 0.12.5-150-31d41c -native
Original file line number Diff line number Diff line change 77
77
78
78
- run : ./mill -i -k selective.resolveTree ${{ inputs.millargs }}
79
79
80
+ - run : ./mill -i -k selective.resolveChanged ${{ inputs.millargs }}
81
+
80
82
- run : ./mill -i -j1 -k selective.run ${{ inputs.millargs }}
81
83
if : ${{ inputs.install-android-sdk }}
82
84
env :
Original file line number Diff line number Diff line change @@ -83,11 +83,23 @@ jobs:
83
83
- run : " echo temurin:17 > .mill-jvm-version"
84
84
85
85
- uses : actions/setup-node@v4
86
- with :
87
- node-version : ' 22'
86
+ with : { node-version: '22' }
88
87
89
88
- run : ./mill -i example.scalalib.__.local.server.test
90
89
90
+ linux-arm :
91
+ if : (github.event.action == 'ready_for_review') || (github.event.pull_request.draft == false)
92
+ runs-on : ubuntu-24.04-arm
93
+ steps :
94
+ - uses : actions/checkout@v4
95
+ with : { fetch-depth: 1 }
96
+
97
+ - run : " echo temurin:17 > .mill-jvm-version"
98
+
99
+ - uses : actions/setup-node@v4
100
+ with : { node-version: '22' }
101
+ - run : ./mill -i example.kotlinlib.__.local.server.test
102
+
91
103
linux :
92
104
needs : build-linux
93
105
strategy :
@@ -115,10 +127,6 @@ jobs:
115
127
millargs : " 'example.javalib.__.native.server.test'"
116
128
install-android-sdk : false
117
129
118
- - java-version : 17
119
- millargs : " 'example.kotlinlib.__.local.server.test'"
120
- install-android-sdk : false
121
-
122
130
- java-version : 17
123
131
millargs : " 'example.android.__.local.server.test'"
124
132
install-android-sdk : true
Original file line number Diff line number Diff line change @@ -108,7 +108,12 @@ case "$MILL_VERSION" in
108
108
* " $MILL_NATIVE_SUFFIX " )
109
109
MILL_VERSION=${MILL_VERSION% " $MILL_NATIVE_SUFFIX " }
110
110
if [ " $( expr substr $( uname -s) 1 5 2> /dev/null) " = " Linux" ]; then
111
- ARTIFACT_SUFFIX=" -native-linux-amd64"
111
+
112
+ if [ " $( uname -m) " = " aarch64" ]; then
113
+ ARTIFACT_SUFFIX=" -native-linux-aarch64"
114
+ else
115
+ ARTIFACT_SUFFIX=" -native-linux-amd64"
116
+ fi
112
117
elif [ " $( uname) " = " Darwin" ]; then
113
118
ARTIFACT_SUFFIX=" -native-mac-aarch64"
114
119
else
You can’t perform that action at this time.
0 commit comments