This repository has been archived by the owner on Sep 20, 2024. It is now read-only.
[QUAD] Bug: Replace ast.literal_eval with json.loads to avoid crashes on Unreal #8149
Workflow file for this run
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
# This workflow will upload a Python Package using Twine when a release is created | |
# For more information see: https://help.github.com/en/actions/language-and-framework-guides/using-python-with-github-actions#publishing-to-package-registries | |
name: 🏗️ Test Build | |
on: | |
pull_request: | |
branches: [develop] | |
types: [review_requested, ready_for_review] | |
paths-ignore: | |
- 'docs/**' | |
- 'website/**' | |
- 'vendor/**' | |
jobs: | |
Windows-latest: | |
runs-on: windows-latest | |
strategy: | |
matrix: | |
python-version: [3.9] | |
steps: | |
- name: 🚛 Checkout Code | |
uses: actions/checkout@v2 | |
- name: Set up Python | |
uses: actions/setup-python@v2 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: 🧵 Install Requirements | |
shell: pwsh | |
run: | | |
./tools/create_env.ps1 | |
- name: 🔨 Build | |
shell: pwsh | |
run: | | |
$env:SKIP_THIRD_PARTY_VALIDATION="1" | |
./tools/build.ps1 | |
Ubuntu-latest: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
python-version: [3.9] | |
steps: | |
- name: 🚛 Checkout Code | |
uses: actions/checkout@v2 | |
- name: Set up Python | |
uses: actions/setup-python@v2 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: 🧵 Install Requirements | |
run: | | |
./tools/create_env.sh | |
- name: 🔨 Build | |
run: | | |
export SKIP_THIRD_PARTY_VALIDATION="1" | |
./tools/build.sh |