================
@@ -0,0 +1,55 @@
+name: Setup Stage
+
+inputs:
+  previous-artifact:
+    description: >-
+      A unique descriptor for the artifact from the previous stage.  This will
+      be used to construct the final artifact pattern, which is:
+      $RUNNER_OS-$RUNNER_ARCH-$PREVIOUS_ARTIFACT-*
+    required: false
+    type: 'string'
+
+outputs:
+  build-prefix:
+    description: "Directory containing the build directory."
+    value: ${{ steps.build-prefix.outputs.build-prefix }}
+
+runs:
+  using: "composite"
+  steps:
+    - name: Install Ninja
+      uses: 
llvm/actions/install-ninja@22e9f909d35b50bd1181709564bfe816eaeaae81 # main
----------------
tstellar wrote:

The only advantage of having them in a separate repo is that you can use them 
without checking out the project source code.  However, for this specific 
action I don't think it would ever be used without already having the source 
code, so there is probably no reason to keep it here.

https://github.com/llvm/llvm-project/pull/98431
_______________________________________________
cfe-commits mailing list
cfe-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

Reply via email to