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/10 08:40:51 UTC

[airflow-ci-infra] branch main updated: Install node in the AMI (#22)

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

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


The following commit(s) were added to refs/heads/main by this push:
     new b92388f  Install node in the AMI (#22)
b92388f is described below

commit b92388f4a0b04c0395a63a717a730a02ed968306
Author: Ash Berlin-Taylor <as...@firemirror.com>
AuthorDate: Mon May 10 09:40:45 2021 +0100

    Install node in the AMI (#22)
    
    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 cb688f8..acc654b 100644
--- a/github-runner-ami/packer/ubuntu2004.pkr.hcl
+++ b/github-runner-ami/packer/ubuntu2004.pkr.hcl
@@ -145,6 +145,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",
       "./files/cleanup.sh",