Skip to content

Commit

Permalink
disable sdl builds for now
Browse files Browse the repository at this point in the history
try older python
  • Loading branch information
hemebond committed Dec 17, 2024
1 parent eac4645 commit 2bf5e62
Showing 1 changed file with 34 additions and 34 deletions.
68 changes: 34 additions & 34 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,39 +9,39 @@ on:
workflow_dispatch:

jobs:
sdl-release:
runs-on: ubuntu-latest
container:
image: debian:latest
steps:
# Must install git before checking out the repo otherwise github doesn't fetch the .git directory.
- name: Install dependencies
run: |
apt update
apt install --yes build-essential git libjpeg-dev libsdl2-dev libcurl4-openssl-dev libpng-dev libfreetype-dev libvorbis-dev
- name: Fetch repository
uses: actions/[email protected]
with:
# make `git describe` show the correct commit hash
fetch-depth: '0'

- name: Compile
run: |
# prevent git complaining about dubious ownership of the repo
chown -R root:root .
# fail if `git describe` doesn't work (required for the buildstring)
git describe --always
# fail if there's any warnings
export CC="cc -Werror"
make sdl-release
- name: Upload Linux artifacts
uses: actions/upload-artifact@v4
with:
name: Linux
path: |
darkplaces-sdl
# sdl-release:
# runs-on: ubuntu-latest
# container:
# image: debian:latest
# steps:
# # Must install git before checking out the repo otherwise github doesn't fetch the .git directory.
# - name: Install dependencies
# run: |
# apt update
# apt install --yes build-essential git libjpeg-dev libsdl2-dev libcurl4-openssl-dev libpng-dev libfreetype-dev libvorbis-dev

# - name: Fetch repository
# uses: actions/[email protected]
# with:
# # make `git describe` show the correct commit hash
# fetch-depth: '0'

# - name: Compile
# run: |
# # prevent git complaining about dubious ownership of the repo
# chown -R root:root .
# # fail if `git describe` doesn't work (required for the buildstring)
# git describe --always
# # fail if there's any warnings
# export CC="cc -Werror"
# make sdl-release

# - name: Upload Linux artifacts
# uses: actions/upload-artifact@v4
# with:
# name: Linux
# path: |
# darkplaces-sdl

wasm-release:
runs-on: ubuntu-latest
Expand All @@ -61,7 +61,7 @@ jobs:

- uses: actions/setup-python@v5
with:
python-version: '3'
python-version: '3.11'

- name: Install emsdk
uses: actions/[email protected]
Expand Down

0 comments on commit 2bf5e62

Please sign in to comment.