ref: ce3c94164a9c3784425ebc920574afc41fb5a5c2
parent: 419eb2cff410d31b4bf05ec630eb7bac7fc8f1bb
author: allkern <lisandroaalarcon@gmail.com>
date: Thu Jun 22 19:16:20 EDT 2023
Manually clone repository on all platforms
--- a/.github/workflows/macos.yml
+++ b/.github/workflows/macos.yml
@@ -9,11 +9,14 @@
runs-on: macos-latest
steps:
- - uses: actions/checkout@v3
- name: Install SDL2 and dylibbundler
run: |
brew install sdl2
brew install dylibbundler
+ - name: Clone repository
+ run: |
+ git clone https://github.com/allkern/psx
+ cd psx
- name: Build and pack PSXE
run: |
git fetch --all --tags
--- a/.github/workflows/ubuntu.yml
+++ b/.github/workflows/ubuntu.yml
@@ -9,11 +9,13 @@
runs-on: ubuntu-latest
steps:
- - uses: actions/checkout@v3
- name: Install SDL2
run: |
- sudo apt update &&
sudo apt install libsdl2-dev
+ - name: Clone repository
+ run: |
+ git clone https://github.com/allkern/psx
+ cd psx
- name: Build PSXE
run: |
git fetch --all --tags
--- a/.github/workflows/windows.yml
+++ b/.github/workflows/windows.yml
@@ -9,7 +9,10 @@
runs-on: windows-latest
steps:
- - uses: actions/checkout@v3
+ - name: Clone repository
+ run: |
+ git clone https://github.com/allkern/psx
+ cd psx
- name: Run build-deps
run: ./build-deps.ps1
- name: 64-bit build
--
⑨