@@ -20,20 +20,20 @@ jobs:
20
20
matrix :
21
21
include :
22
22
# The first combination is Ubuntu running on an AMD64 processor, building for Windows.
23
- - os : ubuntu-24.04
24
- arch : amd64
25
- target : windows
26
- ext : .exe
23
+ # - os: ubuntu-24.04
24
+ # arch: amd64
25
+ # target: windows
26
+ # ext: .exe
27
27
28
- # The second combination is Ubuntu running on an AMD64 processor, building for Linux.
29
- - os : ubuntu-24.04
30
- arch : amd64
31
- target : linux
28
+ # # The second combination is Ubuntu running on an AMD64 processor, building for Linux.
29
+ # - os: ubuntu-24.04
30
+ # arch: amd64
31
+ # target: linux
32
32
33
33
# The third combination is macOS running on an AMD64 processor, building for Darwin (macOS).
34
- - os : macos-13
35
- arch : amd64
36
- target : darwin
34
+ # - os: macos-13
35
+ # arch: amd64
36
+ # target: darwin
37
37
38
38
# The fourth combination is macOS running on an ARM64 processor, building for Darwin (macOS).
39
39
- os : macos-13
66
66
if : ${{ matrix.target != 'windows' }}
67
67
run : |
68
68
ls -la build/
69
- chmod +x build/node-manager-plugin*
69
+ chmod +x build/node-manager-plugin
70
+ md5 build/node-manager-plugin
70
71
71
72
- name : Sign Macos binary
72
73
uses : massalabs/massa/.github/actions/sign-macos@ccc3f02e34544f722634a6fb7732cc4bb515e90b
78
79
signing-identity : ${{ vars.APPLE_DEVELOPER_ID_APPLICATION }}
79
80
80
81
- name : Rename Plugin artifact
81
- run :
82
+ run : |
82
83
mv build/node-manager-plugin${{ matrix.ext }} ${{ env.TARGET_NAME }}${{ matrix.ext }}
84
+ ls -la
85
+ md5 ${{ env.TARGET_NAME }}${{ matrix.ext }}
83
86
84
87
- name : Upload artifacts
85
88
uses : actions/upload-artifact@v4
@@ -88,35 +91,35 @@ jobs:
88
91
path : |
89
92
${{ env.TARGET_NAME }}${{ matrix.ext }}
90
93
91
- sign-windows-binary :
92
- name : Sign Windows binary
93
- needs : build
94
- runs-on : windows-latest
95
- permissions :
96
- contents : write
97
- id-token : write
98
- env :
99
- TARGET_NAME : node-manager-plugin_windows-amd64
100
- steps :
101
- - name : Download Windows artifacts
102
- uses : actions/download-artifact@v4
103
- with :
104
- name : ${{ env.TARGET_NAME }}
105
- path : .
94
+ # sign-windows-binary:
95
+ # name: Sign Windows binary
96
+ # needs: build
97
+ # runs-on: windows-latest
98
+ # permissions:
99
+ # contents: write
100
+ # id-token: write
101
+ # env:
102
+ # TARGET_NAME: node-manager-plugin_windows-amd64
103
+ # steps:
104
+ # - name: Download Windows artifacts
105
+ # uses: actions/download-artifact@v4
106
+ # with:
107
+ # name: ${{ env.TARGET_NAME }}
108
+ # path: .
106
109
107
- - name : Sign Windows binary
108
- uses : massalabs/station/.github/actions/sign-file-digicert@413d4c0bbd042d5e797fbb66bcd2c96be5c3e71a
109
- with :
110
- files : ${{ env.TARGET_NAME }}.exe
111
- SM_API_KEY : ${{ secrets.SM_API_KEY }}
112
- SM_CLIENT_CERT_FILE_B64 : ${{ secrets.SM_CLIENT_CERT_FILE_B64 }}
113
- SM_CLIENT_CERT_PASSWORD : ${{ secrets.SM_CLIENT_CERT_PASSWORD }}
114
- SM_CERT_FINGERPRINT : ${{ secrets.SM_CERT_FINGERPRINT }}
115
- SM_HOST : ${{ secrets.SM_HOST }}
110
+ # - name: Sign Windows binary
111
+ # uses: massalabs/station/.github/actions/sign-file-digicert@413d4c0bbd042d5e797fbb66bcd2c96be5c3e71a
112
+ # with:
113
+ # files: ${{ env.TARGET_NAME }}.exe
114
+ # SM_API_KEY: ${{ secrets.SM_API_KEY }}
115
+ # SM_CLIENT_CERT_FILE_B64: ${{ secrets.SM_CLIENT_CERT_FILE_B64 }}
116
+ # SM_CLIENT_CERT_PASSWORD: ${{ secrets.SM_CLIENT_CERT_PASSWORD }}
117
+ # SM_CERT_FINGERPRINT: ${{ secrets.SM_CERT_FINGERPRINT }}
118
+ # SM_HOST: ${{ secrets.SM_HOST }}
116
119
117
- - name : Upload signed Windows zip (overwrite original)
118
- uses : actions/upload-artifact@v4
119
- with :
120
- name : ${{ env.TARGET_NAME }}
121
- path : ./${{ env.TARGET_NAME }}.exe
122
- overwrite : true
120
+ # - name: Upload signed Windows zip (overwrite original)
121
+ # uses: actions/upload-artifact@v4
122
+ # with:
123
+ # name: ${{ env.TARGET_NAME }}
124
+ # path: ./${{ env.TARGET_NAME }}.exe
125
+ # overwrite: true
0 commit comments