ObjFW  Check-in [ded1893e80]

Overview
Comment:GitHub Actions: Split MSYS2 into multiple steps
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | 1.0
Files: files | file ages | folders
SHA3-256: ded1893e807b782e190808f0bd728e2fbc7916134247215fc852a140ad5ce657
User & Date: js on 2024-03-17 17:36:24
Other Links: branch diff | manifest | tags
Context
2024-03-17
22:41
-[objectByParsingMessagePack]: Fix signed numbers check-in: 355d3a9dc3 user: js tags: 1.0
17:36
GitHub Actions: Split MSYS2 into multiple steps check-in: ded1893e80 user: js tags: 1.0
17:36
GitHub Actions: Split MSYS2 into multiple steps check-in: 34045e21d6 user: js tags: trunk
17:27
GitHub Actions: Add MinGW on Fedora check-in: aa59d36a5f user: js tags: 1.0
Changes

Modified .github/workflows/msys2.yml from [3b32196f2f] to [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