Skip to content

Commit

Permalink
Create CMake_Windows.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
Cherrytree56567 authored Sep 22, 2023
1 parent 6fb0c82 commit c89591b
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions .github/workflows/CMake_Windows.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
name: CMake_Windows

on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]

permissions:
contents: read

jobs:
build:
runs-on: windows-latest

steps:
- uses: actions/checkout@v3

- name: Build
working-directory: ${{env.GITHUB_WORKSPACE}}
run: |
cmake --build ${{env.GITHUB_WORKSPACE}}/PSEMU/cmake-build-debug --target PSEMU -j 6
dir -s
- name: Run PSEMU
shell: cmd
working-directory: ${{env.GITHUB_WORKSPACE}}
run: |
cd ${{env.GITHUB_WORKSPACE}}/PSEMU/cmake-build-debug
PSEMU.exe

0 comments on commit c89591b

Please sign in to comment.