]> Nishi Git Mirror - gwion.git/commitdiff
:wrench: test nightly
authorJérémie Astor <fennecdjay@gmail.com>
Fri, 2 Apr 2021 11:09:34 +0000 (13:09 +0200)
committerJérémie Astor <fennecdjay@gmail.com>
Fri, 2 Apr 2021 11:09:34 +0000 (13:09 +0200)
.github/workflows/linux-release.yml [deleted file]
.github/workflows/windows-release.yml [deleted file]

diff --git a/.github/workflows/linux-release.yml b/.github/workflows/linux-release.yml
deleted file mode 100644 (file)
index 9faeb9f..0000000
+++ /dev/null
@@ -1,61 +0,0 @@
-name: Linux Release
-
-on:
-  push:
-    branches:    
-    - 'master'
-
-jobs:
-  build:
-    name: Linux Release
-    runs-on: ubuntu-latest
-    if: "!contains(github.event.head_commit.message, '[skip ci]')"
-
-    steps:
-    - name: clone Gwion
-      uses: actions/checkout@v2
-
-    - name: SubModules
-      run: git submodule update --init --recursive util ast libcmdapp
-
-    - name: Build
-      run: make
-      env:
-        USE_LTO: 1 
-
-    - name: Create Release                                                                                                                                                                
-      id: create_release                                                                                                                                                                  
-      uses: actions/create-release@v1                                                                                                                                                     
-      env:                                                                                                                                                                                
-        GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # This token is provided by Actions, you do not need to create your own token                                                           
-      with:                                                                                                                                                                               
-        tag_name: gwion-linux-${{ github.sha }}
-        release_name: gwion-release-${{ github.ref }}
-        body: |                                                                                                                                                                           
-          Generated by github actions                                                                                                                                                     
-        draft: false                                                                                                                                                                      
-        prerelease: false       
-
-    - name: Compress
-      run: tar -czvf gwion-linux.tar.gz ./gwion
-
-    - name: Upload Release Asset
-      id: upload-release-asset 
-      uses: actions/upload-release-asset@v1
-      env:
-        GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
-      with:
-        upload_url: ${{ steps.create_release.outputs.upload_url }} # This pulls from the CREATE RELEASE step above, referencing it's ID to get its outputs object, which include a `upload_url`. See this blog post for more info: https://jasonet.co/posts/new-features-of-github-actions/#passing-data-to-future-steps 
-        asset_path: ./gwion-linux.tar.gz
-        asset_name: gwion-linux.tar.gz
-        asset_content_type: application/gzip
-
-    - name: Update Discord bot
-      uses: appleboy/discord-action@master
-      with:
-        webhook_id: ${{ secrets.WEBHOOK_ID }}
-        webhook_token: ${{ secrets.WEBHOOK_TOKEN }}
-        message: "!gwion update"
-
-    - name: Update playground
-      run:  curl https://thegwionplayground.fennecdjay.repl.co/bumcledyfynaghat
diff --git a/.github/workflows/windows-release.yml b/.github/workflows/windows-release.yml
deleted file mode 100644 (file)
index 84e1033..0000000
+++ /dev/null
@@ -1,52 +0,0 @@
-name: Windows Release
-
-on:
-  push:
-    branches:    
-    - 'master'
-
-jobs:
-  build:
-    name: Windows Release
-    runs-on: windows-latest
-    if: "!contains(github.event.head_commit.message, '[skip ci]')"
-    env:
-      CC: gcc
-      BUILD_ON_WINDOWS: 1 
-
-    steps:
-    - name: clone Gwion
-      uses: actions/checkout@v2
-
-    - name: SubModules
-      run: git submodule update --init --recursive util ast libcmdapp
-
-    - name: Build
-      run: make
-
-    - name: Create Release                                                                                                                                                                
-      id: create_release                                                                                                                                                                  
-      uses: actions/create-release@v1                                                                                                                                                     
-      env:                                                                                                                                                                                
-        GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # This token is provided by Actions, you do not need to create your own token                                                           
-      with:                                                                                                                                                                               
-        tag_name: gwion-windows-${{ github.sha }}
-        release_name: gwion-release-${{ github.ref }}
-        body: |                                                                                                                                                                           
-          Generated by github actions                                                                                                                                                     
-        draft: false                                                                                                                                                                      
-        prerelease: false       
-
-#    - name: Compress
-#      run: 7za windows.zip gwion.exe
-
-    - name: Upload Release Asset
-      id: upload-release-asset 
-      uses: actions/upload-release-asset@v1
-      env:
-        GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
-      with:
-        upload_url: ${{ steps.create_release.outputs.upload_url }} # This pulls from the CREATE RELEASE step above, referencing it's ID to get its outputs object, which include a `upload_url`. See this blog post for more info: https://jasonet.co/posts/new-features-of-github-actions/#passing-data-to-future-steps 
-        asset_path: ./gwion.exe
-        asset_name: gwion-for-windows.exe
-        asset_content_type: application/octet-stream