Skip to content
Merged
Changes from 1 commit
Commits
Show all changes
58 commits
Select commit Hold shift + click to select a range
ac1836d
Update bsd.yml
1111Windows Jan 2, 2026
3fec16b
test
1111Windows Jan 2, 2026
c0fe3dd
Update bsd.yml
1111Windows Jan 2, 2026
77d27a9
Update macOS version in workflow configuration
1111Windows Jan 2, 2026
b5c45d4
Update macOS version in workflow configuration
1111Windows Jan 2, 2026
cad6820
Update macOS runner version in workflow
1111Windows Jan 2, 2026
2be2fe1
Update bsd.yml
1111Windows Jan 2, 2026
690fe30
Change CI runner from macOS to Ubuntu
1111Windows Jan 2, 2026
196d504
Update FreeBSD VM action to version 1.3.4
1111Windows Jan 2, 2026
6c68f63
Add VM start step to FreeBSD workflow
1111Windows Jan 2, 2026
5e01dfd
Update bsd.yml
1111Windows Jan 2, 2026
fa7e76d
Update bsd.yml
1111Windows Jan 2, 2026
96e3329
Clean up FreeBSD workflow configuration
1111Windows Jan 2, 2026
28245a4
Refactor FreeBSD CI workflow steps
1111Windows Jan 2, 2026
3f4b8d2
Add bash installation to FreeBSD CI workflow
1111Windows Jan 2, 2026
62511db
Add physfs package installation to FreeBSD workflow
1111Windows Jan 2, 2026
2f4a409
Update FreeBSD workflow to install additional packages
1111Windows Jan 2, 2026
ff4c117
Update freetype package to freetype2 in workflow
1111Windows Jan 2, 2026
8d12631
Add libraqm package installation in bsd.yml
1111Windows Jan 2, 2026
32e660d
Enable Discord support in CMake configuration
1111Windows Jan 2, 2026
b5ec9c1
add output
1111Windows Jan 2, 2026
ed816a8
Change architecture from x86_64 to amd64
1111Windows Jan 2, 2026
d790960
Fix artifact name to use fixed architecture
1111Windows Jan 2, 2026
909ff25
Fix formatting in FreeBSD workflow for cmake command
1111Windows Jan 2, 2026
7161bff
add sudo
1111Windows Jan 2, 2026
399c1e7
Update bsd.yml
1111Windows Jan 3, 2026
38c7b76
Update bsd.yml
1111Windows Jan 3, 2026
757d562
Update bsd.yml
1111Windows Jan 3, 2026
f08cef3
add comments
1111Windows Jan 3, 2026
8e03531
Update bsd.yml
1111Windows Jan 3, 2026
6e68aae
Update bsd.yml
1111Windows Jan 3, 2026
8dff70b
Update bsd.yml
1111Windows Jan 3, 2026
d4eb7f9
Update bsd.yml
1111Windows Jan 3, 2026
31c0df9
tar: .: file changed as we read it ./run.sh
1111Windows Jan 3, 2026
669644a
revise as suggested
1111Windows Jan 3, 2026
151fcf6
Update freebsd.yml
1111Windows Jan 3, 2026
a00414f
Update freebsd.yml
1111Windows Jan 3, 2026
b2d32a2
Update freebsd.yml
1111Windows Jan 3, 2026
b68fb1a
try fix Error: Config not found: /home/runner/work/_actions/vmaction…
1111Windows Jan 3, 2026
2f75c9c
Fix tar: .: file changed as we read it ./run.sh
1111Windows Jan 3, 2026
823e7ea
Update freebsd.yml
1111Windows Jan 3, 2026
765db84
fix fatal: detected dubious ownership in repository at '/home/runner/…
1111Windows Jan 3, 2026
dcb4216
fix fatal: detected dubious ownership in repository at '/home/runner/…
1111Windows Jan 3, 2026
7fac2e6
fix release build
1111Windows Jan 4, 2026
6afbcb3
fix if syntax
1111Windows Jan 4, 2026
e576114
Update freebsd.yml
1111Windows Jan 4, 2026
6e927c4
fix the issue where a release is created regardless.
1111Windows Jan 4, 2026
1ba815e
test
1111Windows Jan 4, 2026
5a54253
fix variable passing
1111Windows Jan 4, 2026
bbdb250
use ufs
1111Windows Jan 4, 2026
38abdce
use rsync
1111Windows Jan 4, 2026
ff1650d
Update freebsd.yml
1111Windows Jan 4, 2026
d24dd2d
Update freebsd vm to1.3.6
1111Windows Jan 4, 2026
ffe9af0
Merge tobbi's branch
1111Windows Jan 5, 2026
cc3f1bd
set release = on
1111Windows Jan 5, 2026
861be2e
Only upload Release Build in Release
1111Windows Jan 5, 2026
25eeece
Use matrix variable for build type in freebsd vm
1111Windows Jan 17, 2026
d20661d
add workflow_dispatch
1111Windows Jan 17, 2026
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
Prev Previous commit
Next Next commit
Update bsd.yml
  • Loading branch information
1111Windows authored Jan 3, 2026
commit 6e68aae7564b9905fbd56e00a3d0d9b67c712008
12 changes: 9 additions & 3 deletions .github/workflows/bsd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -94,14 +94,20 @@ jobs:
- name: Package
working-directory: build
run: |
tar -czvf SuperTux-FreeBSD.tar.gz out/usr/
cd out/usr
echo '#!/bin/sh' > run.sh
echo './bin/supertux2' >> run.sh
chmod +x run.sh
tar -czvf SuperTux-FreeBSD.tar.gz ./
cd ../../
mkdir upload
mv SuperTux-FreeBSD.tar.gz upload/
mv out/usr/SuperTux-FreeBSD.tar.gz upload/


- name: Upload tar archives
uses: actions/upload-artifact@v4
with:
name: "${{ matrix.vm_os }}-amd64-${{ matrix.build_type }}-tgz"
name: "SuperTux-${{ matrix.vm_os }}-amd64-${{ matrix.build_type }}-tgz"
path: build/upload/*.tar.gz
if-no-files-found: ignore

Expand Down