Skip to content

Commit

Permalink
Fix linux install checks
Browse files Browse the repository at this point in the history
Env variables are in the wrong place, node20 issue
  • Loading branch information
olsen232 committed Sep 5, 2024
1 parent 4893428 commit 76944f4
Showing 1 changed file with 13 additions and 11 deletions.
24 changes: 13 additions & 11 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ jobs:
- 3306:3306

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
submodules: recursive

Expand All @@ -99,7 +99,7 @@ jobs:
#

- name: "setup: cmake & ninja"
uses: lukka/get-cmake@v3.25.2 # workaround for node 20 issue
uses: lukka/get-cmake@latest
with:
cmakeVersion: "${{ env.CMAKE_VERSION }}"

Expand Down Expand Up @@ -319,15 +319,15 @@ jobs:
PATH: "/opt/python/cp311-cp311/bin:/opt/rh/devtoolset-10/root/usr/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/github/home/.cargo/bin:/opt/mssql-tools/bin"

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
submodules: recursive

#
# setup
#
- name: "setup: cmake & ninja"
uses: lukka/get-cmake@v3.25.2 # workaround for node 20 issue
uses: lukka/get-cmake@latest
with:
cmakeVersion: "${{ env.CMAKE_VERSION }}"

Expand Down Expand Up @@ -545,15 +545,17 @@ jobs:
name: "Install-check: ${{ matrix.os.label }}/${{ matrix.arch.label }}"
continue-on-error: ${{ !!matrix.os.xfail }}

env:
ACTIONS_RUNNER_FORCE_ACTIONS_NODE_VERSION: node16
ACTIONS_ALLOW_USE_UNSECURE_NODE_VERSION: true

container:
image: ${{ matrix.os.image }}
credentials:
username: ${{ needs.amazon-ecr-auth.outputs.docker_username }}
password: ${{ needs.amazon-ecr-auth.outputs.docker_password }}
env:
DEBIAN_FRONTEND: noninteractive
ACTIONS_RUNNER_FORCE_ACTIONS_NODE_VERSION: node16
ACTIONS_ALLOW_USE_UNSECURE_NODE_VERSION: true

steps:
- name: setup
Expand Down Expand Up @@ -608,7 +610,7 @@ jobs:
command -v kart
kart --version
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: e2e test (no helper)
env:
Expand Down Expand Up @@ -647,7 +649,7 @@ jobs:
PY_VER_ID: "cp311-cp311"

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
submodules: recursive

Expand All @@ -663,7 +665,7 @@ jobs:
cache-dependency-path: 'requirements/*.txt'

- name: "setup: cmake & ninja"
uses: lukka/get-cmake@v3.25.2 # workaround for node 20 issue
uses: lukka/get-cmake@latest
with:
cmakeVersion: "${{ env.CMAKE_VERSION }}"

Expand Down Expand Up @@ -784,7 +786,7 @@ jobs:
PY_VER_INSTALLER: "https://www.python.org/ftp/python/3.11.6/python-3.11.6-macos11.pkg"

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
submodules: recursive

Expand Down Expand Up @@ -1042,7 +1044,7 @@ jobs:
)
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
submodules: recursive

Expand Down

0 comments on commit 76944f4

Please sign in to comment.