Skip to content

[MIRROR] merged skill bonus into jobs, reduced it to 6 on the way #1864

[MIRROR] merged skill bonus into jobs, reduced it to 6 on the way

[MIRROR] merged skill bonus into jobs, reduced it to 6 on the way #1864

Workflow file for this run

name: Run Tests
permissions:
contents: read
on:
pull_request:
branches: [ "dev-sierra" ]
workflow_dispatch: # allows this workflow to be manually triggered
env:
BYOND_MAJOR: "514"
BYOND_MINOR: "1589"
SPACEMAN_DMM_VERSION: suite-1.7.3
jobs:
PreFlight:
runs-on: ubuntu-latest
steps:
- name: checkout
uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608
- name: paths-filter
uses: dorny/paths-filter@4512585405083f25c027a35db413c2b3b9006d50
id: filter
with:
filters: .github/workflow-config/preflight-filters.yml
outputs:
dm: ${{ steps.filter.outputs.dm }}
DreamChecker:
runs-on: ubuntu-latest
needs: PreFlight
if: needs.PreFlight.outputs.dm == 'true'
steps:
- uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608
- name: Setup Cache
uses: actions/cache@704facf57e6136b1bc63b828d79edcd491f0ee84
with:
path: ~/spaceman_dmm/${{ env.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: ~/dreamchecker
# - 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
needs:
- PreFlight
- DreamChecker
if: needs.PreFlight.outputs.dm == 'true'
steps:
- uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608
- name: Setup Cache
uses: actions/cache@704facf57e6136b1bc63b828d79edcd491f0ee84
with:
path: ~/BYOND-${{ env.BYOND_MAJOR }}.${{ env.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
ExampleMap:
runs-on: ubuntu-latest
needs:
- PreFlight
- DreamChecker
if: needs.PreFlight.outputs.dm == 'true'
steps:
- uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608
- name: Setup Cache
uses: actions/cache@704facf57e6136b1bc63b828d79edcd491f0ee84
with:
path: ~/BYOND-${{ env.BYOND_MAJOR }}.${{ env.BYOND_MINOR }}
key: ${{ runner.os }}-byond-${{ env.BYOND_MAJOR }}-${{ env.BYOND_MINOR }}
- name: Run Tests
env:
TEST: MAP
MAP_PATH: example
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
SierraMap:
runs-on: ubuntu-latest
needs:
- PreFlight
- DreamChecker
if: needs.PreFlight.outputs.dm == 'true'
steps:
- uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608
- name: Setup Cache
uses: actions/cache@704facf57e6136b1bc63b828d79edcd491f0ee84
with:
path: ~/BYOND-${{ env.BYOND_MAJOR }}.${{ env.BYOND_MINOR }}
key: ${{ runner.os }}-byond-${{ env.BYOND_MAJOR }}-${{ env.BYOND_MINOR }}
- name: Run Tests
env:
TEST: MAP
MAP_PATH: sierra
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
AwaySites:
runs-on: ubuntu-latest
needs:
- PreFlight
- DreamChecker
if: needs.PreFlight.outputs.dm == 'true'
steps:
- uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608
- name: Setup Cache
uses: actions/cache@704facf57e6136b1bc63b828d79edcd491f0ee84
with:
path: ~/BYOND-${{ env.BYOND_MAJOR }}.${{ env.BYOND_MINOR }}
key: ${{ runner.os }}-byond-${{ env.BYOND_MAJOR }}-${{ env.BYOND_MINOR }}
- name: Run Tests
env:
TEST: MAP
MAP_PATH: away_sites_testing
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