inventory bugfixes (#1110) #4251
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: CI Suite | |
on: | |
push: | |
branches: | |
- master | |
- 'project/**' | |
pull_request: | |
branches: | |
- master | |
- 'project/**' | |
jobs: | |
run_linters: | |
if: ( !contains(github.event.head_commit.message, '[ci skip]') ) | |
name: Run Linters | |
runs-on: ubuntu-22.04 | |
concurrency: | |
group: run_linters-${{ github.head_ref || github.run_id }} | |
cancel-in-progress: true | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Restore SpacemanDMM cache | |
uses: actions/cache@v3 | |
with: | |
path: ~/SpacemanDMM | |
key: ${{ runner.os }}-spacemandmm | |
- name: Restore Yarn cache | |
uses: actions/cache@v3 | |
with: | |
path: tgui/.yarn/cache | |
key: ${{ runner.os }}-yarn-${{ hashFiles('tgui/yarn.lock') }} | |
restore-keys: | | |
${{ runner.os }}-build- | |
${{ runner.os }}- | |
- name: Install Tools | |
run: | | |
pip3 install setuptools | |
bash tools/ci/install_node.sh | |
bash tools/ci/install_spaceman_dmm.sh dreamchecker | |
tools/bootstrap/python -c '' | |
- name: Give Linters A Go | |
id: linter-setup | |
run: ':' | |
- name: Run Grep Checks | |
if: steps.linter-setup.conclusion == 'success' && !cancelled() | |
run: bash tools/ci/check_grep.sh | |
- name: Run DreamChecker | |
if: steps.linter-setup.conclusion == 'success' && !cancelled() | |
shell: bash | |
run: ~/dreamchecker 2>&1 | bash tools/ci/annotate_dm.sh | |
- name: Run Map Checks | |
if: steps.linter-setup.conclusion == 'success' && !cancelled() | |
run: | | |
tools/bootstrap/python -m mapmerge2.dmm_test | |
- name: Run DMI Tests | |
if: steps.linter-setup.conclusion == 'success' && !cancelled() | |
run: tools/bootstrap/python -m dmi.test | |
- name: Check File Directories | |
if: steps.linter-setup.conclusion == 'success' && !cancelled() | |
run: bash tools/ci/check_filedirs.sh daedalus.dme | |
- name: Check Changelogs | |
if: steps.linter-setup.conclusion == 'success' && !cancelled() | |
run: bash tools/ci/check_changelogs.sh | |
- name: Check Miscellaneous Files | |
if: steps.linter-setup.conclusion == 'success' && !cancelled() | |
run: bash tools/ci/check_misc.sh | |
- name: Run TGUI Checks | |
if: steps.linter-setup.conclusion == 'success' && !cancelled() | |
run: tools/build/build --ci lint tgui-test | |
odlint: | |
if: ( !contains(github.event.head_commit.message, '[ci skip]') ) | |
name: "Lint with OpenDream" | |
runs-on: ubuntu-22.04 | |
concurrency: | |
group: odlint-${{ github.head_ref || github.run_id }} | |
cancel-in-progress: true | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: robinraju/[email protected] | |
with: | |
repository: "OpenDreamProject/OpenDream" | |
tag: "latest" | |
fileName: "DMCompiler_linux-x64.tar.gz" | |
extract: true | |
- name: Run OpenDream | |
run: | | |
./DMCompiler_linux-x64/DMCompiler daedalus.dme --suppress-unimplemented --define=CIBUILDING | |
compile_all_maps: | |
if: ( !contains(github.event.head_commit.message, '[ci skip]') ) | |
name: Compile Maps | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Restore BYOND cache | |
uses: actions/cache@v3 | |
with: | |
path: ~/BYOND | |
key: ${{ runner.os }}-byond | |
- name: Compile All Maps | |
run: | | |
bash tools/ci/install_byond.sh | |
source $HOME/BYOND/byond/bin/byondsetup | |
tools/build/build --ci dm -DCIBUILDING -DCITESTING -DALL_MAPS | |
find_all_maps: | |
if: ( !contains(github.event.head_commit.message, '[ci skip]') ) | |
name: Find Maps to Test | |
runs-on: ubuntu-latest | |
outputs: | |
maps: ${{ steps.map_finder.outputs.maps }} | |
alternate_tests: ${{ steps.alternate_test_finder.outputs.alternate_tests }} | |
concurrency: | |
group: find_all_maps-${{ github.head_ref || github.run_id }} | |
cancel-in-progress: true | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Find Maps | |
id: map_finder | |
run: | | |
echo "$(ls -mw0 _maps/*.json)" > maps_output.txt | |
sed -i -e s+_maps/+\"+g -e s+.json+\"+g maps_output.txt | |
echo "Maps: $(cat maps_output.txt)" | |
echo "::set-output name=maps::{\"paths\":[$(cat maps_output.txt)]}" | |
- name: Find Alternate Tests | |
id: alternate_test_finder | |
run: | | |
ALTERNATE_TESTS_JSON=$(jq -nRc '[inputs | capture("^(?<major>[0-9]+)\\.(?<minor>[0-9]+): (?<map>.+)$")]' .github/alternate_byond_versions.txt) | |
echo "alternate_tests=$ALTERNATE_TESTS_JSON" >> $GITHUB_OUTPUT | |
run_all_tests: | |
if: ( !contains(github.event.head_commit.message, '[ci skip]') ) | |
name: Integration Tests | |
needs: [find_all_maps] | |
strategy: | |
fail-fast: false | |
matrix: | |
map: ${{ fromJSON(needs.find_all_maps.outputs.maps).paths }} | |
concurrency: | |
group: un_all_tests-${{ github.head_ref || github.run_id }}-${{ matrix.map }} | |
cancel-in-progress: true | |
uses: ./.github/workflows/run_integration_tests.yml | |
with: | |
map: ${{ matrix.map }} | |
run_alternate_tests: | |
if: ( !contains(github.event.head_commit.message, '[ci skip]') && needs.find_all_maps.outputs.alternate_tests != '[]' ) | |
name: Alternate Tests | |
needs: [find_all_maps] | |
strategy: | |
fail-fast: false | |
matrix: | |
setup: ${{ fromJSON(needs.find_all_maps.outputs.alternate_tests) }} | |
concurrency: | |
group: run_all_tests-${{ github.head_ref || github.run_id }}-${{ matrix.setup.major }}.${{ matrix.setup.minor }}-${{ matrix.setup.map }} | |
cancel-in-progress: true | |
uses: ./.github/workflows/run_integration_tests.yml | |
with: | |
map: ${{ matrix.setup.map }} | |
major: ${{ matrix.setup.major }} | |
minor: ${{ matrix.setup.minor }} | |
check_alternate_tests: | |
if: ( !contains(github.event.head_commit.message, '[ci skip]') && needs.find_all_maps.outputs.alternate_tests != '[]' ) | |
name: Check Alternate Tests | |
needs: [run_alternate_tests] | |
runs-on: ubuntu-latest | |
steps: | |
- run: echo Alternate tests passed. | |
compare_screenshots: | |
if: ( !contains(github.event.head_commit.message, '[ci skip]') && (always() && (!failure() && !cancelled())) ) | |
needs: [run_all_tests, run_alternate_tests] | |
name: Compare Screenshot Tests | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
# If we ever add more artifacts, this is going to break, but it'll be obvious. | |
- name: Download screenshot tests | |
uses: actions/download-artifact@v3 | |
with: | |
path: artifacts | |
- name: ls -R | |
run: ls -R artifacts | |
- name: Setup screenshot comparison | |
run: npm i | |
working-directory: tools/screenshot-test-comparison | |
- name: Run screenshot comparison | |
run: node tools/screenshot-test-comparison/index.js artifacts code/modules/unit_tests/screenshots artifacts/screenshot_comparisons | |
# workflow_run does not give you the PR it ran on, | |
# even through the thing literally named "matching pull requests". | |
# However, in GraphQL, you can check if the check suite was ran | |
# by a specific PR, so trusting the (user controlled) action here is okay, | |
# as long as we check it later in show_screenshot_test_results | |
- name: Save PR ID | |
if: failure() && github.event.pull_request | |
run: | | |
echo ${{ github.event.pull_request.number }} > artifacts/screenshot_comparisons/pull_request_number.txt | |
- name: Upload bad screenshots | |
if: failure() | |
uses: actions/upload-artifact@v3 | |
with: | |
name: bad-screenshots | |
path: artifacts/screenshot_comparisons | |
test_windows: | |
if: ( !contains(github.event.head_commit.message, '[ci skip]') ) | |
name: Windows Build | |
runs-on: windows-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Restore Yarn cache | |
uses: actions/cache@v3 | |
with: | |
path: tgui/.yarn/cache | |
key: ${{ runner.os }}-yarn-${{ hashFiles('tgui/yarn.lock') }} | |
restore-keys: | | |
${{ runner.os }}-build- | |
${{ runner.os }}- | |
- name: Compile | |
run: pwsh tools/ci/build.ps1 | |
env: | |
DM_EXE: "C:\\byond\\bin\\dm.exe" | |
- name: Create artifact | |
run: | | |
md deploy | |
bash tools/deploy.sh ./deploy | |
- name: Deploy artifact | |
uses: actions/upload-artifact@v3 | |
with: | |
name: deploy | |
path: deploy |