Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
This should be fixed by now, remove the workaround ( https://github.com/ScoopInstalle...
[simgrid.git] / .github / workflows / jarfile.yml
index 76da9b8..793026e 100644 (file)
@@ -1,4 +1,4 @@
-name: SimGrid complete jar file generation
+name: Jar build
 
 on:
   workflow_dispatch:
@@ -31,7 +31,6 @@ jobs:
       if: matrix.config.os == 'windows'
       run: |
         Invoke-Expression (New-Object System.Net.WebClient).DownloadString('https://get.scoop.sh')
-        (Get-Content ~\scoop\buckets\main\bucket\gcc.json).replace('http://repo.msys2.org/', 'http://mirrors.huaweicloud.com/msys2/') | Set-Content  ~\scoop\buckets\main\bucket\gcc.json
         scoop install gcc --global
         If ((Test-Path "C:\hostedtoolcache\windows\Boost") -eq $False){
           # Use the boost-1.72.0-win32-msvc14.1-x86_64.tar.gz for Windows 2016
@@ -56,7 +55,15 @@ jobs:
       with:
           name: jar-${{ matrix.config.os }}
           path: build/simgrid.jar
-
+    - name: Create the failure Message
+      if: ${{ failure() }}
+      run: |
+        echo "{\"attachments\": [{\"color\": \"#FF0000\", \"text\":\"Failure when building JAR file on ${{ matrix.config.name }}! See ${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }} \"}]}" > mattermost.json
+    - uses: mattermost/action-mattermost-notify@master
+      if: ${{ failure() }}
+      env:
+        MATTERMOST_WEBHOOK_URL: ${{ secrets.MATTERMOST_WEBHOOK_URL }}
+        MATTERMOST_CHANNEL: ${{ secrets.MATTERMOST_CHANNEL}}
   create_jar:
     needs: build
     runs-on: ubuntu-latest
@@ -92,3 +99,15 @@ jobs:
             jar-ubuntu
             jar-windows
             jar-macos
+      - name: Create the failure Message
+        if: ${{ failure() }}
+        run: |
+          echo "{\"attachments\": [{\"color\": \"#FF0000\", \"text\":\"Failure when assembling JAR file ! See ${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }} \"}]}" > mattermost.json
+      - name: Create the success Message
+        if: ${{ success() }}
+        run: |
+          echo "{\"attachments\": [{\"color\": \"#00FF00\", \"text\":\"JAR file built successfully ! You can get it on: ${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }} \"}]}" > mattermost.json
+      - uses: mattermost/action-mattermost-notify@master
+        env:
+          MATTERMOST_WEBHOOK_URL: ${{ secrets.MATTERMOST_WEBHOOK_URL }}
+          MATTERMOST_CHANNEL: ${{ secrets.MATTERMOST_CHANNEL}}