Add 20gig diagnostic check #13
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: ue-docker | |
on: push | |
jobs: | |
build: | |
runs-on: windows-latest-4-cores | |
steps: | |
- name: Set up Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: '3.12.8' | |
architecture: 'x64' | |
- name: Install unreal-docker | |
run: | | |
pip install ue4-docker | |
- name: Build Unreal Engine Docker image | |
run: | | |
ue4-docker setup | |
ue4-docker diagnostics 20gig | |
ue4-docker build -basetag ltsc2022 --visual-studio 2022 --target minimal --exclude debug --exclude templates -isolation=process -username=${{ secrets.DOCKER_USERNAME }} -password=${{ secrets.DOCKER_TOKEN }} 5.5.1 |