Testing w/o containter for prep step
This commit is contained in:
@ -17,17 +17,18 @@ jobs:
|
|||||||
prepare-build:
|
prepare-build:
|
||||||
name: Prepare Build Assets
|
name: Prepare Build Assets
|
||||||
runs-on: ubuntu-22.04
|
runs-on: ubuntu-22.04
|
||||||
container:
|
# container:
|
||||||
image: barichello/godot-ci:mono-4.4.1 # change to mono
|
# image: barichello/godot-ci:mono-4.4.1 # change to mono
|
||||||
steps:
|
steps:
|
||||||
# Doing this becuase barichello/godot-ci:4.4 doesn't have nodejs installed, may need to make own docker image in the future
|
# Doing this becuase barichello/godot-ci:4.4 doesn't have nodejs installed, may need to make own docker image in the future
|
||||||
# By default ubuntu-22.04 has nodejs 12, but we need a more modern version for the actions/checkout@v4
|
# By default ubuntu-22.04 has nodejs 12, but we need a more modern version for the actions/checkout@v4
|
||||||
- name: Install Node.js
|
- name: Install Dependencies
|
||||||
run: |
|
run: |
|
||||||
apt-get update
|
apt-get update
|
||||||
apt-get install -y curl
|
apt-get install -y curl
|
||||||
curl -fsSL https://deb.nodesource.com/setup_18.x | bash -
|
curl -fsSL https://deb.nodesource.com/setup_18.x | bash -
|
||||||
apt-get install -y nodejs
|
apt-get install -y nodejs unzip git git git-lfs
|
||||||
|
git lfs install
|
||||||
|
|
||||||
- name: Checkout
|
- name: Checkout
|
||||||
uses: https://gitea.com/actions/checkout@v4
|
uses: https://gitea.com/actions/checkout@v4
|
||||||
@ -128,8 +129,9 @@ jobs:
|
|||||||
export-linux:
|
export-linux:
|
||||||
name: Linux Export
|
name: Linux Export
|
||||||
runs-on: ubuntu-22.04 # Use 22.04 with godot 4
|
runs-on: ubuntu-22.04 # Use 22.04 with godot 4
|
||||||
|
needs: prepare-build
|
||||||
container:
|
container:
|
||||||
image: barichello/godot-ci:4.4
|
image: barichello/godot-ci:mono-4.4.1 # change to mono
|
||||||
steps:
|
steps:
|
||||||
# Doing this becuase barichello/godot-ci:4.4 doesn't have nodejs installed, may need to make own docker image in the future
|
# Doing this becuase barichello/godot-ci:4.4 doesn't have nodejs installed, may need to make own docker image in the future
|
||||||
# By default ubuntu-22.04 has nodejs 12, but we need a more modern version for the actions/checkout@v4
|
# By default ubuntu-22.04 has nodejs 12, but we need a more modern version for the actions/checkout@v4
|
||||||
|
|||||||
Reference in New Issue
Block a user