Skip to content

Commit

Permalink
Disable testing override maps in CI (#3946)
Browse files Browse the repository at this point in the history
# About the pull request

This PR removes testing for override json maps.

# Explain why it's good for the game

Faster testing by reducing the required runners by two.

# Testing Photographs and Procedure
See checks.

# Changelog
:cl: Drathek
code: Removed extra CI testing for override maps
/:cl:
  • Loading branch information
Drulikar authored Jul 20, 2023
1 parent aa43981 commit 4c515d4
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/ci_suite.yml
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,8 @@ jobs:
- name: Find Maps
id: map_finder
run: |
echo "$(ls -mw0 maps/*.json)" > maps_output.txt
shopt -s extglob
echo "$(ls -mw0 maps/!(*override*).json)" > maps_output.txt
sed -i -e s+maps/+\"+g -e s+.json+\"+g maps_output.txt
echo "Maps: $(cat maps_output.txt)"
echo "maps={\"paths\":[$(cat maps_output.txt)]}" >> $GITHUB_OUTPUT
Expand Down

0 comments on commit 4c515d4

Please sign in to comment.