mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-08-03 06:40:18 +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:
|
jobs:
|
||||||
build:
|
build:
|
||||||
|
runs-on: windows-latest
|
||||||
runs-on: ubuntu-latest
|
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v4
|
- 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
|
- name: configure
|
||||||
run: ./configure
|
run: |
|
||||||
|
C:\tools\msys64\usr\bin\bash.exe --login -i -c "./configure"
|
||||||
- name: make
|
- name: make
|
||||||
run: make
|
run: |
|
||||||
|
C:\tools\msys64\usr\bin\bash.exe --login -i -c "make"
|
||||||
- name: make check
|
- name: make check
|
||||||
run: make check
|
run: |
|
||||||
|
C:\tools\msys64\usr\bin\bash.exe --login -i -c "make check"
|
||||||
- name: make distcheck
|
- name: make distcheck
|
||||||
run: make distcheck
|
run: |
|
||||||
|
C:\tools\msys64\usr\bin\bash.exe --login -i -c "make distcheck"
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue