File tree Expand file tree Collapse file tree 1 file changed +10
-3
lines changed
Expand file tree Collapse file tree 1 file changed +10
-3
lines changed Original file line number Diff line number Diff line change 9090 needs : build
9191 strategy :
9292 matrix :
93- os : [ubuntu-latest, macos-latest, windows-latest]
93+ os : [ubuntu-latest, ubuntu-24.04-arm, macos-latest, windows-latest]
9494
9595 runs-on : ${{ matrix.os }}
9696
@@ -115,12 +115,19 @@ jobs:
115115 if : ${{ matrix.os == 'windows-latest' }}
116116 uses : ilammy/msvc-dev-cmd@v1
117117
118- - name : Build Linux
118+ - name : Build Linux x86_64
119119 if : ${{ matrix.os == 'ubuntu-latest' }}
120120 shell : bash
121121 run : |
122122 ./package/build-native.sh
123- mv target/cq target/cq-native-linux
123+ mv target/cq target/cq-native-linux-x86_64
124+
125+ - name : Build Linux ARM64
126+ if : ${{ matrix.os == 'ubuntu-24.04-arm' }}
127+ shell : bash
128+ run : |
129+ ./package/build-native.sh
130+ mv target/cq target/cq-native-linux-arm64
124131
125132 - name : Build OSX
126133 if : ${{ matrix.os == 'macos-latest' }}
You can’t perform that action at this time.
0 commit comments