Compare reimplementation #41
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: Compare reimplementation | |
on: | |
workflow_run: | |
workflows: [Build binary] | |
types: [completed] | |
workflow_dispatch: | |
inputs: | |
workflow_id: | |
required: true | |
type: number | |
jobs: | |
compare: | |
runs-on: windows-latest | |
permissions: | |
statuses: write | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Install satsuki | |
uses: robinraju/[email protected] | |
with: | |
repository: happyhavoc/satsuki | |
latest: false | |
tag: v0.1.0 | |
fileName: satsuki.exe | |
- name: Add satsuki to PATH | |
run: | | |
echo $pwd.Path >> $env:GITHUB_PATH | |
- name: Download original game binary for comparison | |
run: curl -L $env:ORIGINAL_URL -o resources/game.exe | |
env: | |
ORIGINAL_URL: ${{ secrets.ORIGINAL_URL }} | |
- name: Download reimplemented game binary for comparison (1/2) | |
uses: actions/github-script@v6 | |
with: | |
script: | | |
let allArtifacts = await github.rest.actions.listWorkflowRunArtifacts({ | |
owner: context.repo.owner, | |
repo: context.repo.repo, | |
run_id: context.payload.workflow_run ? context.payload.workflow_run.id : context.payload.inputs.workflow_id, | |
}); | |
let matchArtifact = allArtifacts.data.artifacts.filter((artifact) => { | |
return artifact.name == "th06e" | |
})[0]; | |
let download = await github.rest.actions.downloadArtifact({ | |
owner: context.repo.owner, | |
repo: context.repo.repo, | |
artifact_id: matchArtifact.id, | |
archive_format: 'zip', | |
}); | |
let fs = require('fs'); | |
fs.writeFileSync(`${process.env.GITHUB_WORKSPACE}/th06e.zip`, Buffer.from(download.data)); | |
- name: Download reimplemented game binary for comparison (2/2) | |
run: | | |
mkdir -p build | |
unzip th06e.zip -d build | |
- name: Use implemented.csv from target repo | |
run: curl -L https://raw.githubusercontent.com/${{github.event.workflow_run.head_repository.full_name}}/${{github.event.workflow_run.head_sha}}/config/implemented.csv -o config/implemented.csv | |
- name: Create diff summary | |
run: python scripts/diff_all_functions.py > $env:GITHUB_STEP_SUMMARY | |
- name: Report tests check | |
if: ${{ github.event_name == 'workflow_run' }} | |
uses: actions/github-script@v6 | |
with: | |
github-token: ${{ secrets.GITHUB_TOKEN }} | |
script: | | |
github.rest.repos.createCommitStatus({ | |
owner: context.repo.owner, | |
repo: context.repo.repo, | |
sha: context.payload.workflow_run.head_sha, | |
state: 'success', | |
target_url: `${context.serverUrl}/${context.repo.owner}/${context.repo.repo}/actions/runs/${context.runId}`, | |
description: 'Comparison checks', | |
context: 'comparison-checks', | |
}) |