ObjFW  Check-in [77b155c1da]

Overview
Comment:GitHub Actions: Add ObjC++ test on 32 bit Ubuntu
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | trunk
Files: files | file ages | folders
SHA3-256: 77b155c1da230244dc07161f2199e051992f898837befe987f42b78d262ec565
User & Date: js on 2024-11-05 23:48:18
Other Links: manifest | tags
Context
2024-11-05
23:48
GitHub Actions: Add ObjC++ test on 32 bit Ubuntu Leaf check-in: 77b155c1da user: js tags: trunk
2024-11-04
01:05
GitHub Actions: Add ObjC++ tests check-in: 089d52ca9a user: js tags: trunk
Changes

Modified .github/workflows/ubuntu-latest-32bit.yml from [c27d1cf836] to [5330ff4082].

19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37




          - --without-tls --disable-shared
          - --without-tls --disable-shared --enable-seluid24
          - --without-tls --disable-compiler-tls --disable-threads
    steps:
    - name: Install dependencies
      run: |
        sudo apt-get update
        sudo apt-get install gcc-multilib
    - uses: actions/checkout@v4
    - name: autogen.sh
      run: ./autogen.sh
    - name: configure
      run: ./configure OBJC="clang -m32" ${{ matrix.configure_flags }}
    - name: make
      run: make -j$(nproc)
    - name: make check
      run: make check
    - name: make install
      run: sudo make install











|











>
>
>
>
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
          - --without-tls --disable-shared
          - --without-tls --disable-shared --enable-seluid24
          - --without-tls --disable-compiler-tls --disable-threads
    steps:
    - name: Install dependencies
      run: |
        sudo apt-get update
        sudo apt-get install g++-multilib
    - uses: actions/checkout@v4
    - name: autogen.sh
      run: ./autogen.sh
    - name: configure
      run: ./configure OBJC="clang -m32" ${{ matrix.configure_flags }}
    - name: make
      run: make -j$(nproc)
    - name: make check
      run: make check
    - name: make install
      run: sudo make install
    - name: C++ test
      run: |
        objfw-compile -o cxxtest .github/workflows/CXXTest.mm
        ./cxxtest