ci: фикс — убрал container: ubuntu:22.04 (не имел node для actions/checkout)
Some checks failed
Godot CI / Import + smoke test (push) Failing after 1m0s
Some checks failed
Godot CI / Import + smoke test (push) Failing after 1m0s
Причина падения CI run #6 и #7: actions/checkout@v4 = Node.js скрипт, ubuntu:22.04 image не имеет node, exec failed. Фикс: runs-on: ubuntu-latest (мапится на node:20-bookworm в нашем runner-е, имеет node + Debian apt). apt-get install wget/unzip всё ещё работает. Godot тянется с github releases.
This commit is contained in:
parent
c324d26c3b
commit
f9322f8134
1 changed files with 5 additions and 7 deletions
|
|
@ -13,19 +13,17 @@ env:
|
|||
jobs:
|
||||
validate:
|
||||
name: Import + smoke test
|
||||
runs-on: docker
|
||||
container:
|
||||
image: ubuntu:22.04
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v4
|
||||
|
||||
- name: Install deps
|
||||
run: |
|
||||
apt-get update -qq
|
||||
apt-get install -y -qq wget unzip ca-certificates git
|
||||
apt-get install -y -qq wget unzip ca-certificates
|
||||
rm -rf /var/lib/apt/lists/*
|
||||
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v4
|
||||
|
||||
- name: Download Godot ${{ env.GODOT_VERSION }} headless
|
||||
run: |
|
||||
cd /tmp
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue