This is an automated email from the ASF dual-hosted git repository.
rawkintrevo pushed a commit to branch trunk
in repository https://gitbox.apache.org/repos/asf/mahout.git
The following commit(s) were added to refs/heads/trunk by this push:
new 50c0e7b [JENKINS-MIGRATION] Moving "build website"
50c0e7b is described below
commit 50c0e7b05b22e492a985ccb43709f08faa633e0e
Author: Trevor Grant <[email protected]>
AuthorDate: Fri Aug 7 07:51:18 2020 -0500
[JENKINS-MIGRATION] Moving "build website"
---
.github/workflows/main.yml | 27 +++++++++++++++++++++++++++
1 file changed, 27 insertions(+)
diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml
new file mode 100644
index 0000000..1065f97
--- /dev/null
+++ b/.github/workflows/main.yml
@@ -0,0 +1,27 @@
+# This is a basic workflow to help you get started with Actions
+
+name: CI
+
+# Controls when the action will run. Triggers the workflow on push or pull
request
+# events but only for the trunk branch
+on:
+ push:
+ branches: [ trunk ]
+ pull_request:
+ branches: [ trunk ]
+
+# A workflow run is made up of one or more jobs that can run sequentially or
in parallel
+jobs:
+ # This workflow contains a single job called "build"
+ build:
+ # The type of runner that the job will run on
+ runs-on: ubuntu-latest
+
+ # Steps represent a sequence of tasks that will be executed as part of the
job
+ steps:
+ # Checks-out your repository under $GITHUB_WORKSPACE, so your job can
access it
+ - uses: actions/checkout@v2
+
+ # Runs a single command using the runners shell
+ - name: Build Website
+ run: ./website/build_site.sh