Merge pull request #3551 from MistakeNot4892/devfix #9903
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: Run Tests | |
on: | |
push: | |
branches: | |
- dev | |
- stable | |
- staging | |
pull_request: | |
branches: | |
- dev | |
- stable | |
- staging | |
workflow_dispatch: | |
env: | |
BYOND_MAJOR: "514" | |
BYOND_MINOR: "1575" | |
SPACEMAN_DMM_VERSION: suite-1.7.2 | |
jobs: | |
DreamChecker: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Setup Cache | |
uses: actions/cache@v3 | |
with: | |
path: $HOME/spaceman_dmm/$SPACEMAN_DMM_VERSION | |
key: ${{ runner.os }}-spacemandmm-${{ env.SPACEMAN_DMM_VERSION }} | |
- name: Install Dreamchecker | |
run: scripts/install-spaceman-dmm.sh dreamchecker | |
- name: Run Dreamchecker | |
run: | | |
set -o pipefail | |
~/dreamchecker 2>&1 | tee ${GITHUB_WORKSPACE}/output-annotations.txt | |
- name: Annotate Lints | |
uses: yogstation13/DreamAnnotate@v2 | |
if: always() | |
with: | |
outputFile: output-annotations.txt | |
- name: Run Failure Webhook | |
env: | |
JOB_STATUS: ${{ job.status }} | |
WEBHOOK_URL: ${{ secrets.WEBHOOK_URL }} | |
HOOK_OS_NAME: ${{ runner.os }} | |
WORKFLOW_NAME: ${{ github.workflow }} | |
if: ${{ failure() }} | |
run: | | |
wget https://raw.githubusercontent.com/DiscordHooks/github-actions-discord-webhook/master/send.sh | |
chmod +x send.sh | |
./send.sh failure $WEBHOOK_URL | |
Code: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Setup Cache | |
uses: actions/cache@v3 | |
with: | |
path: $HOME/BYOND-${BYOND_MAJOR}.${BYOND_MINOR} | |
key: ${{ runner.os }}-byond-${{ env.BYOND_MAJOR }}-${{ env.BYOND_MINOR }} | |
- name: Install Dependencies | |
run: sudo apt-get install -y uchardet | |
- name: Run Tests | |
env: | |
TEST: CODE | |
run: test/run-test.sh | |
- name: Run Failure Webhook | |
env: | |
JOB_STATUS: ${{ job.status }} | |
WEBHOOK_URL: ${{ secrets.WEBHOOK_URL }} | |
HOOK_OS_NAME: ${{ runner.os }} | |
WORKFLOW_NAME: ${{ github.workflow }} | |
if: ${{ failure() }} | |
run: | | |
wget https://raw.githubusercontent.com/DiscordHooks/github-actions-discord-webhook/master/send.sh | |
chmod +x send.sh | |
./send.sh failure $WEBHOOK_URL | |
Maps: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
map_path: [example, tradeship, exodus, ministation, away_sites_testing, modpack_testing, planets_testing] | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Setup Cache | |
uses: actions/cache@v3 | |
with: | |
path: $HOME/BYOND-${BYOND_MAJOR}.${BYOND_MINOR} | |
key: ${{ runner.os }}-byond-${{ env.BYOND_MAJOR }}-${{ env.BYOND_MINOR }} | |
- name: Run Tests | |
env: | |
TEST: MAP | |
MAP_PATH: ${{ matrix.map_path }} | |
run: test/run-test.sh | |
- name: Run Failure Webhook | |
env: | |
JOB_STATUS: ${{ job.status }} | |
WEBHOOK_URL: ${{ secrets.WEBHOOK_URL }} | |
HOOK_OS_NAME: ${{ runner.os }} | |
WORKFLOW_NAME: ${{ github.workflow }} | |
if: ${{ failure() }} | |
run: | | |
wget https://raw.githubusercontent.com/DiscordHooks/github-actions-discord-webhook/master/send.sh | |
chmod +x send.sh | |
./send.sh failure $WEBHOOK_URL |