Since Glocke was interested in testing SFML and asked me how he could help, I decided instead of replying to his message, I'd make the information public in case anybody else is interested.
If you are keen on helping test the latest and greatest that SFML has to offer, start out by watching the GitHub repository.
Go to https://github.com/SFML/SFML and at the top, you see a button labelled "Watch". Click on that and you will be watching the repository, meaning you will be automatically notified of any commits that are made.Now... SFML development happens in branches. Nothing is ever directly pushed to the master branch any more. If code ends up in the master branch, it would have gone through a dedicated pull request meaning code review and thorough testing. For every issue that is currently being worked on, there is normally an associated branch and pull request.
You can find a detailed list of all branches here: https://github.com/SFML/SFML/branches/all. If you click on the #number at the right, it will take you to its associated pull request, where you can provide feedback about e.g. whether it fixes the issue for you or even breaks something that previously worked. The pull request is the "main hub" for discussions regarding that work item, and any future changes will typically be announced in it by the author as well.After browsing through the branches, you might have found something that you think you are able to meaningfully test, you have 2 options at this point, either clone the repository using git or download the zip archive of the corresponding branch.
To download the zip archive of the branch, simply click on the branch name in the list of branches. Once you are at the file list index just click on the "Download ZIP" button to the right and unzip the archive somewhere.You will have to do this again every time you want to try out another branch
or even another version of the same branch deleting the previous files first. This is why I recommend the git method.
To clone the repository using git, either use the tool you might have installed to do it, or install git and rungit clone https://github.com/SFML/SFML.git
at any command line that is able to run the git executable. Once the repository is cloned, you can review the remote branches that exist using the commandgit branch -rv
This will output the branch name, HEAD of the branch and commit message of HEAD. You can make sure you are testing the right stuff by checking whether the HEAD message is what you expect. To checkout/switch to a branch, simply run the commandgit checkout -f <HEAD commit hash here>
The -f is there just in case you accidentally modify a tracked file, it will discard the change automatically.Cloning the repository has the advantage that you don't have to re-download a new zip every time you want to test another branch, or even a newer version of the branch.
At this point, just build SFML using the standard procedure. Configure using CMake, build it however you want and conduct your tests however you feel like testing the code
. Nothing prevents you from using WIP branches in your own projects as well, in case you just can't wait for that next release
.