instead of just getting Latin1 we practically see getting 2 or 3 byte… #44
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
on: | |
push: | |
pull_request: | |
jobs: | |
########### Linux ########### | |
linux: | |
name: ci | |
runs-on: ubuntu-latest | |
container: | |
image: ubuntu:22.04 | |
# don't run pull requests from local branches twice | |
if: github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name != github.repository | |
strategy: | |
matrix: | |
include: | |
- server: x11 | |
graphics: cairo | |
- server: x11 | |
graphics: xlib | |
- server: headless | |
graphics: headless | |
env: | |
DEBIAN_FRONTEND: noninteractive | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Install packages | |
run: | | |
apt-get -q -y update | |
apt-get -q -y install libgnustep-gui-dev libfreetype-dev libcairo2-dev libxt-dev pkg-config build-essential | |
- name: Build source | |
run: | | |
. /usr/share/GNUstep/Makefiles/GNUstep.sh | |
./configure --enable-server=${{ matrix.server }} --enable-graphics=${{ matrix.graphics }} | |
make && make install | |
- name: Run tests | |
run: | | |
. /usr/share/GNUstep/Makefiles/GNUstep.sh | |
make check |