Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion .github/workflows/bsd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -80,4 +80,3 @@ jobs:
make -j3 VERBOSE=1
make install DESTDIR="/tmp/supertux" VERBOSE=1
./test_supertux2
actions/checkout@v4
21 changes: 4 additions & 17 deletions .github/workflows/ubuntu-touch.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,27 +43,14 @@ jobs:
fetch-depth: 0
submodules: recursive

- name: Install clickable
run: |
# For whatever reason, I have to manually install runc before
# docker.io or containerd, else it fails because of broken dependency
# Using apt-get because apt complains it shouldn't be used in scripts
sudo apt-get update
sudo apt-get install -y runc
sudo apt-get install -y docker.io adb git python3 python3-pip
pip3 install --user git+https://gitlab.com/clickable/clickable.git

# Clickable requires a reboot. This is a sneaky way to bypass that :^)
sudo systemctl unmask docker.service
sudo systemctl start docker.service

- name: Build (no OpenGL)
if: ${{ matrix.opengl == 'sdl' }}
env:
BUILD_TYPE: ${{ (matrix.build_type == 'Debug') && '--debug' || '' }}
ARCH: ${{ matrix.arch }}
run: |
~/.local/bin/clickable build --verbose ${BUILD_TYPE} --arch ${ARCH}
uses: tuxecure/clickable@v1
with:
image: clickable/ci-20.04-${{ matrix.arch }}
run: clickable build --verbose ${BUILD_TYPE} --arch ${{ matrix.arch }}

- uses: actions/upload-artifact@v4
with:
Expand Down