Ver Fonte

Introduce ccache option in main.yml

Add ccache input option to workflows for build jobs.
jimsterino98 há 4 meses atrás
pai
commit
54ae6d4d65
1 ficheiros alterados com 7 adições e 0 exclusões
  1. 7 0
      .github/workflows/main.yml

+ 7 - 0
.github/workflows/main.yml

@@ -65,6 +65,12 @@ on:
         type: boolean
         default: true
 
+      ccache:
+        description: "use ccache?"
+        required: false
+        default: true
+        type: boolean
+
 jobs:
 
   build-samsung:
@@ -79,6 +85,7 @@ jobs:
       droidspace: ${{ inputs.droidspace }}
       ntsync: ${{ inputs.ntsync }}
       bbr: ${{ inputs.bbr }}
+      ccache: ${{ inputs.ccache }}
 
   release:
     runs-on: ubuntu-latest