Skip to content

Commit

Permalink
Merge pull request #81 from Okkoma/sdl2.30
Browse files Browse the repository at this point in the history
sdl2.30.9
  • Loading branch information
klaussilveira authored Nov 22, 2024
2 parents 1474bbf + 85fae35 commit c252464
Show file tree
Hide file tree
Showing 1,108 changed files with 222,779 additions and 130,837 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/android.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ concurrency:

jobs:
android:
name: android📱
name: 📱
runs-on: ubuntu-latest
strategy:
fail-fast: false
Expand Down
18 changes: 15 additions & 3 deletions .github/workflows/ios.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,16 +15,25 @@ jobs:
platform:
- iOS
- tvOS
lib-type:
- static
env:
HOST: macOS
PLATFORM: ${{ matrix.platform }}
LIB_TYPE: static
LIB_TYPE: ${{ matrix.lib-type }}
steps:
- name: Checkout
uses: actions/checkout@v4
with: { fetch-depth: 0 }
- name: Cache
uses: actions/cache@v4
with:
path: |
build
key: |
${{ matrix.platform }}-${{ matrix.lib-type }}-${{ runner.os }}-${{ runner.arch }}
- name: Select Xcode
run: sudo xcode-select --switch /Applications/Xcode_15.4.app
run: sudo xcode-select -s /Applications/Xcode.app
- name: CMake
run: rake cmake
- name: Build
Expand All @@ -45,6 +54,9 @@ jobs:
- name: Upload
uses: actions/upload-artifact@v4
with:
name: ${{ matrix.platform }}-static-all-rel
name: ${{ matrix.platform }}-${{ matrix.lib-type }}-all-rel
path: build/ci/*.tar.gz
if: github.event_name == 'push'
- name: Clean
run: |
rm -rf {build/ci/lib,build/ci/bin/*.app}
2 changes: 0 additions & 2 deletions .github/workflows/linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -95,8 +95,6 @@ jobs:
PUBLISHER_NAME: ${{ secrets.PUBLISHER_NAME }}
PUBLISHER_EMAIL: ${{ secrets.PUBLISHER_EMAIL }}
PUBLISHER_TOKEN: ${{ secrets.PUBLISHER_TOKEN }}
BINTRAY_USER: ${{ secrets.BINTRAY_USER }}
BINTRAY_KEY: ${{ secrets.BINTRAY_KEY }}
run: script/dockerized.sh ${PLATFORM/-*} rake publish
if: |
github.event_name == 'push' &&
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
uses: actions/checkout@v4
with: { fetch-depth: 0 }
- name: Select Xcode
run: sudo xcode-select --switch /Applications/Xcode_15.4.app
run: sudo xcode-select -s /Applications/Xcode.app
- name: CMake
run: rake cmake
- name: Build
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/web.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
#- Debug
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

# - name: Cache
# id: cache-system-libraries
Expand All @@ -27,17 +27,17 @@ jobs:
# key: emsdk-${{ runner.os }}

- name: Emscripten
uses: mymindstorm/setup-emsdk@v11
uses: mymindstorm/setup-emsdk@v14
with:
#actions-cache-folder: 'emsdk-cache'
no-cache: true
version: 3.1.17
version: 3.1.60

- name: Verify Emscripten
run: emcc -v

- name: CMake
run: emcmake script/cmake_emscripten.sh build -DCMAKE_BUILD_TYPE=${{ matrix.build-type }} -DURHO3D_LIB_TYPE=static -DURHO3D_PROFILING=0
run: script/cmake_emscripten.sh build -DCMAKE_BUILD_TYPE=${{ matrix.build-type }} -DURHO3D_LIB_TYPE=static -DURHO3D_PROFILING=0

- name: Build
run: cmake --build build --parallel 2 --config ${{ matrix.build-type }}
Expand Down
7 changes: 4 additions & 3 deletions .github/workflows/windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
with: { fetch-depth: 0 }
- name: Set cache TTL
run: |
echo ("CACHE_MONTH=" + $(date '+%b %Y')) >> $env:GITHUB_ENV
echo ("CACHE_MONTH=vs_" + $(date '+%b %Y')) >> $env:GITHUB_ENV
- name: CMake
run: rake cmake
- name: Build
Expand Down Expand Up @@ -84,11 +84,11 @@ jobs:
MINGW_SYSROOT: 'C:/ProgramData/chocolatey/lib/mingw'
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
with: { fetch-depth: 0 }
- name: Set cache TTL
run: |
echo ("CACHE_MONTH=" + $(date '+%b %Y')) >> $env:GITHUB_ENV
echo ("CACHE_MONTH=gcc_" + $(date '+%b %Y')) >> $env:GITHUB_ENV
- name: Cache MinGW installation
id: cache-mingw
uses: actions/cache@v4
Expand All @@ -100,6 +100,7 @@ jobs:
with:
version: 12.2.0
platform: x64
if: steps.cache-mingw.outputs.cache-hit != 'true'
- name: CMake
run: rake cmake
- name: Build
Expand Down
8 changes: 4 additions & 4 deletions Source/ThirdParty/SDL/BUGS.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@

Bugs are now managed in the SDL bug tracker, here:
Bugs are now managed in the SDL issue tracker, here:

https://bugzilla.libsdl.org/
https://github.com/libsdl-org/SDL/issues

You may report bugs there, and search to see if a given issue has already
been reported, discussed, and maybe even fixed.
Expand All @@ -11,6 +11,6 @@ You may also find help at the SDL forums/mailing list:

https://discourse.libsdl.org/

Bug reports are welcome here, but we really appreciate if you use Bugzilla, as
bugs discussed on the mailing list may be forgotten or missed.
Bug reports are welcome here, but we really appreciate if you use the issue
tracker, as bugs discussed on the mailing list may be forgotten or missed.

Loading

0 comments on commit c252464

Please sign in to comment.