ObjFW  Diff

Differences From Artifact [3b32196f2f]:

To Artifact [f5ad4b3bf9]:


17
18
19
20
21
22
23

24
25
26


27


28


29


30
      - uses: actions/checkout@v4
      - uses: msys2/setup-msys2@v2
        with:
          update: true
          msystem: ${{matrix.sys}}
          install: autoconf automake make
          pacboy: clang:p openssl:p

      - shell: msys2 {0}
        run: |
          ./autogen.sh


          ./configure OBJC=clang


          make -j4


          make check


          make install







>
|
<
|
>
>
|
>
>
|
>
>
|
>
>
|
17
18
19
20
21
22
23
24
25

26
27
28
29
30
31
32
33
34
35
36
37
38
      - uses: actions/checkout@v4
      - uses: msys2/setup-msys2@v2
        with:
          update: true
          msystem: ${{matrix.sys}}
          install: autoconf automake make
          pacboy: clang:p openssl:p
      - name: autogen.sh
        shell: msys2 {0}

        run: ./autogen.sh
      - name: configure
        shell: msys2 {0}
        run: ./configure OBJC=clang
      - name: make
        shell: msys2 {0}
        run: make -j4
      - name: make check
        shell: msys2 {0}
        run: make check
      - name: make install
        shell: msys2 {0}
        run: make install