You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# Define the path to the executable. On Windows, the shell is bash (Git Bash),
123
+
# so we don't need to add a '.exe' or other suffix.
124
+
EXECUTABLE="$APP_DIR/bin/sirius"
125
+
126
+
# Add execute permissions for Linux and macOS
127
+
if [[ "${{ runner.os }}" != "Windows" ]]; then
128
+
echo "Setting execute permissions on $EXECUTABLE"
129
+
chmod +x "$EXECUTABLE"
130
+
fi
131
+
132
+
# Run the self-test command
133
+
echo "Executing: $EXECUTABLE selftest"
134
+
"$EXECUTABLE" selftest
135
+
136
+
echo "✅ Self-test passed successfully!"
137
+
104
138
- name: Upload Distributions
105
139
uses: actions/upload-artifact@v4
106
140
with:
@@ -120,7 +154,6 @@ jobs:
120
154
121
155
release:
122
156
needs: [distGUI]
123
-
# needs: [ distCLI, distGUI]
124
157
runs-on: ubuntu-latest
125
158
steps:
126
159
- uses: actions/checkout@v3
@@ -153,7 +186,7 @@ jobs:
153
186
* [currently not available] `headless` represents a command line only version that does not contain GUI relevant packages. It is smaller and does not need any GUI libraries installed on the users system (good for servers).
154
187
155
188
See the [online documentation](https://v6.docs.sirius-ms.io/quick-start/) for details.
156
-
189
+
157
190
Changelog can be found [here](https://v6.docs.sirius-ms.io/changelog/).
0 commit comments