mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-04-21 03:55:32 +00:00
Update c-cpp.yml
This commit is contained in:
parent
ea29ab314b
commit
1aaed07cd7
1 changed files with 14 additions and 6 deletions
20
.github/workflows/c-cpp.yml
vendored
20
.github/workflows/c-cpp.yml
vendored
|
@ -8,16 +8,24 @@ on:
|
|||
|
||||
jobs:
|
||||
build:
|
||||
|
||||
runs-on: ubuntu-latest
|
||||
runs-on: windows-latest
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
- name: Set up MSYS2 (for Unix-like build environment on Windows)
|
||||
run: |
|
||||
choco install msys2
|
||||
C:\tools\msys64\usr\bin\bash.exe --login -i -c "pacman -Syu"
|
||||
C:\tools\msys64\usr\bin\bash.exe --login -i -c "pacman -S base-devel gcc"
|
||||
- name: configure
|
||||
run: ./configure
|
||||
run: |
|
||||
C:\tools\msys64\usr\bin\bash.exe --login -i -c "./configure"
|
||||
- name: make
|
||||
run: make
|
||||
run: |
|
||||
C:\tools\msys64\usr\bin\bash.exe --login -i -c "make"
|
||||
- name: make check
|
||||
run: make check
|
||||
run: |
|
||||
C:\tools\msys64\usr\bin\bash.exe --login -i -c "make check"
|
||||
- name: make distcheck
|
||||
run: make distcheck
|
||||
run: |
|
||||
C:\tools\msys64\usr\bin\bash.exe --login -i -c "make distcheck"
|
||||
|
|
Loading…
Add table
Reference in a new issue