This is an automated email from the ASF dual-hosted git repository.
avantgardner pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/arrow-ballista.git
The following commit(s) were added to refs/heads/main by this push:
new b06dcd86 Upgrade node version to fix build in `main` (#794)
b06dcd86 is described below
commit b06dcd861719a09da2b4f88ae8071fd0aa732887
Author: Brent Gardner <[email protected]>
AuthorDate: Mon May 29 12:58:20 2023 -0600
Upgrade node version to fix build in `main` (#794)
Upgrade node version to fix build in `main` (#794)
---
.github/workflows/rust.yml | 10 ++++++++--
1 file changed, 8 insertions(+), 2 deletions(-)
diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml
index d15c5099..e15176df 100644
--- a/.github/workflows/rust.yml
+++ b/.github/workflows/rust.yml
@@ -77,14 +77,20 @@ jobs:
runs-on: ubuntu-latest # proprietary github image, not ubuntu:latest
container:
image: ubuntu:latest # actual ubuntu:latest that ubuntu publishes
+ env:
+ DEBIAN_FRONTEND: "noninteractive"
steps:
- uses: actions/checkout@v3
- name: Install dependencies
run: |
+ cat /etc/*-release
apt-get -qq update
- apt-get -qq install -y nodejs npm
+ apt-get -qq upgrade
+ apt-get -qq install -y curl
+ curl -fsSL https://deb.nodesource.com/setup_18.x | bash
+ apt-get -qq update
+ apt-get -qq install -y nodejs
npm install -g yarn
- cat /etc/*-release
which node
which npm
which yarn