You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@airflow.apache.org by as...@apache.org on 2021/05/07 12:20:27 UTC

[airflow-ci-infra] branch install-node created (now 85d84fd)

This is an automated email from the ASF dual-hosted git repository.

ash pushed a change to branch install-node
in repository https://gitbox.apache.org/repos/asf/airflow-ci-infra.git.


      at 85d84fd  Install node in the AMI

This branch includes the following new commits:

     new 85d84fd  Install node in the AMI

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


[airflow-ci-infra] 01/01: Install node in the AMI

Posted by as...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

ash pushed a commit to branch install-node
in repository https://gitbox.apache.org/repos/asf/airflow-ci-infra.git

commit 85d84fdbdb29a1378316b0296fde0af28cd4dd0b
Author: Ash Berlin-Taylor <as...@firemirror.com>
AuthorDate: Fri May 7 13:19:18 2021 +0100

    Install node in the AMI
    
    Despite not being in the cloud-init script, it was _somehow_ not causing
    a problem, but it not being present in the AMI made production builds
    fails
---
 github-runner-ami/packer/files/install-nodejs.sh | 25 ++++++++++++++++++++++++
 github-runner-ami/packer/ubuntu2004.pkr.hcl      |  1 +
 2 files changed, 26 insertions(+)

diff --git a/github-runner-ami/packer/files/install-nodejs.sh b/github-runner-ami/packer/files/install-nodejs.sh
new file mode 100644
index 0000000..d2a4eed
--- /dev/null
+++ b/github-runner-ami/packer/files/install-nodejs.sh
@@ -0,0 +1,25 @@
+#!/bin/bash -e
+# Licensed to the Apache Software Foundation (ASF) under one
+# or more contributor license agreements.  See the NOTICE file
+# distributed with this work for additional information
+# regarding copyright ownership.  The ASF licenses this file
+# to you under the Apache License, Version 2.0 (the
+# "License"); you may not use this file except in compliance
+# with the License.  You may obtain a copy of the License at
+#
+#   http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing,
+# software distributed under the License is distributed on an
+# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+# KIND, either express or implied.  See the License for the
+# specific language governing permissions and limitations
+# under the License.
+
+# https://github.com/actions/virtual-environments/blob/525f79f479cca77aef4e0a680548b65534c64a18/images/linux/scripts/installers/nodejs.sh
+curl -sL https://raw.githubusercontent.com/mklement0/n-install/stable/bin/n-install | bash -s -- -ny -
+~/n/bin/n lts
+npm install -g grunt gulp n parcel-bundler typescript newman
+npm install -g --save-dev webpack webpack-cli
+npm install -g npm
+rm -rf ~/n
diff --git a/github-runner-ami/packer/ubuntu2004.pkr.hcl b/github-runner-ami/packer/ubuntu2004.pkr.hcl
index 294c6cc..8e25e0b 100644
--- a/github-runner-ami/packer/ubuntu2004.pkr.hcl
+++ b/github-runner-ami/packer/ubuntu2004.pkr.hcl
@@ -137,6 +137,7 @@ build {
       "./files/install-files.sh",
       "./files/source-list-additions.sh",
       "./files/install-dependencies.sh",
+      "./files/install-nodejs.sh",
       "./files/docker-compose.sh",
       "./files/runner_bootstrap.sh",
     ]