We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 029ee45 commit 3c01e40Copy full SHA for 3c01e40
.github/workflows/python-package.yml
@@ -45,11 +45,16 @@ jobs:
45
sdist:
46
runs-on: ubuntu-latest
47
steps:
48
- - uses: libsdl-org/setup-sdl@6574e20ac65ce362cd12f9c26b3a5e4d3cd31dee
49
- with:
50
- install-linux-dependencies: true
51
- build-type: "Debug"
52
- version: ${{ env.sdl-version }}
+ - run: |
+ git clone https://github.com/libsdl-org/SDL@release-${{ env.sdl-version }}
+ cmake -S SDL -B /tmp/SDL
+ cmake --build /tmp/SDL
+ cmake --install /tmp/SDL
53
+ #- uses: libsdl-org/setup-sdl@6574e20ac65ce362cd12f9c26b3a5e4d3cd31dee
54
+ # with:
55
+ # install-linux-dependencies: true
56
+ # build-type: "Debug"
57
+ # version: ${{ env.sdl-version }}
58
- uses: actions/checkout@v4
59
with:
60
fetch-depth: ${{ env.git-depth }}
0 commit comments