ObjFW  Check-in [9aa3bdbab2]

Overview
Comment:GitHub Actions: Add DJGPP
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA3-256: 9aa3bdbab2e58bd729e75c4572f7f87278daa8f655019325b7ed0deaf8c126fe
User & Date: js on 2024-08-26 22:25:33
Other Links: manifest | tags
Context
2024-08-30
18:58
Add ARM64/Win64 assembly lookup implementation check-in: 995af4a904 user: js tags: trunk
2024-08-26
22:25
GitHub Actions: Add DJGPP check-in: 9aa3bdbab2 user: js tags: trunk
21:12
Fix compiling with DJGPP check-in: dd49efb579 user: js tags: trunk
Changes

Added .github/workflows/djgpp.yml version [dbfe1118bd].



















































>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
name: djgpp
on: [push, pull_request]
jobs:
  tests:
    runs-on: ubuntu-latest
    container: centos:7
    steps:
    - name: Install pkgsrc
      run: |
        curl -O https://pkgsrc.smartos.org/packages/Linux/bootstrap/bootstrap-el7-trunk-x86_64-20220718.tar.gz
        tar xfvzp bootstrap-el7-trunk-x86_64-20220718.tar.gz -C /
        echo /usr/pkg/sbin >>$GITHUB_PATH
        echo /usr/pkg/bin >>$GITHUB_PATH
    - name: Install packages
      run: |
        pkgin -y update
        pkgin -y install cross-i586-pc-msdosdjgpp-gcc autoconf automake m4 gmake
        echo /usr/pkg/cross-djgpp/bin >>$GITHUB_PATH
    - uses: actions/checkout@v1
    - name: autogen.sh
      run: M4=gm4 ./autogen.sh
    - name: configure
      run: ./configure --host=i586-pc-msdosdjgpp
    - name: make
      run: gmake -j$(nproc)