fix(ci): change docker-compose -> docker compose

This commit is contained in:
Leroy Hopson 2025-01-12 10:41:37 +13:00
parent 64aa0ff49a
commit 8d79553470
No known key found for this signature in database
GPG key ID: D2747312A6DB51AA

View file

@ -26,7 +26,7 @@ jobs:
arch: ${{ matrix.arch }}
target: ${{ matrix.target }}
- name: Pull docker images
run: docker-compose pull
run: docker compose pull
working-directory: addons/godot_xterm/native
- name: Cache docker image layers
uses: jpribyl/action-docker-layer-caching@v0.1.1
@ -36,10 +36,10 @@ jobs:
- name: Build libuv
if: steps.cache-submodules.outputs.cache-hit != 'true'
working-directory: addons/godot_xterm/native
run: UID_GID="$(id -u):$(id -g)" docker-compose run -e TARGET=${{ matrix.target }} -e ARCH=${{ matrix.arch }} -v ${{github.workspace}}/.scons-cache:/scons-cache libuv-linux
run: UID_GID="$(id -u):$(id -g)" docker compose run -e TARGET=${{ matrix.target }} -e ARCH=${{ matrix.arch }} -v ${{github.workspace}}/.scons-cache:/scons-cache libuv-linux
- name: Build libgodot-xterm
working-directory: addons/godot_xterm/native
run: UID_GID="$(id -u):$(id -g)" docker-compose run -e TARGET=${{ matrix.target }} -e ARCH=${{ matrix.arch }} -v ${{github.workspace}}/.scons-cache:/scons-cache libgodot-xterm-linux
run: UID_GID="$(id -u):$(id -g)" docker compose run -e TARGET=${{ matrix.target }} -e ARCH=${{ matrix.arch }} -v ${{github.workspace}}/.scons-cache:/scons-cache libgodot-xterm-linux
- name: Upload binaries
uses: actions/upload-artifact@v4
with: