From 439fc6e89fd4b1e726460f9e35753646c3d4bf87 Mon Sep 17 00:00:00 2001 From: Julian Waller Date: Thu, 8 Dec 2022 23:35:26 +0000 Subject: [PATCH] chore: install cmake from buster-backports --- .github/workflows/node.yaml | 19 ++++++++++--------- 1 file changed, 10 insertions(+), 9 deletions(-) diff --git a/.github/workflows/node.yaml b/.github/workflows/node.yaml index 519d99d..7eae081 100644 --- a/.github/workflows/node.yaml +++ b/.github/workflows/node.yaml @@ -41,22 +41,22 @@ jobs: arch: arm64 is-native: false docker-arch: linux/arm64 - docker-image: node:14-buster + docker-image: node:16-buster - os: ubuntu-latest arch: arm is-native: false docker-arch: linux/arm/v7 - docker-image: node:14-buster + docker-image: node:16-buster # linux-musl - os: ubuntu-latest arch: x64 is-native: false docker-arch: linux/amd64 - docker-image: node:14-alpine + docker-image: node:16-alpine libc: musl steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - name: Checkout submodules shell: bash run: | @@ -82,10 +82,10 @@ jobs: run: | brew install yasm - - name: Use Node.js 14.x - uses: actions/setup-node@v1 + - name: Use Node.js 16.x + uses: actions/setup-node@v3 with: - node-version: 14.x + node-version: 16.x - name: rebuild if: ${{ !matrix.docker-arch }} @@ -116,8 +116,9 @@ jobs: run: | if command -v apt-get &> /dev/null then - apt-get update - apt-get install -y cmake yasm + echo "deb http://deb.debian.org/debian buster-backports main contrib non-free" | tee -a /etc/apt/sources.list.d/backports.list + apt update + apt install -y cmake/buster-backports yasm elif command -v apk &> /dev/null then apk update