ObjFW  Check-in [8523df3211]

Overview
Comment:GitHub Actions: Add UCRT64 to MinGW on Fedora
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA3-256: 8523df3211aaecfd3584a997162f229538009e20ac4d9be2872a693b34a44e57
User & Date: js on 2024-04-14 09:34:33
Other Links: manifest | tags
Context
2024-04-14
09:48
OFMutableArray: Fix an inconsistency check-in: 3274500ffd user: js tags: trunk
09:34
GitHub Actions: Add UCRT64 to MinGW on Fedora check-in: 8523df3211 user: js tags: trunk
00:47
Remove unnecessary #include check-in: fa3529c18b user: js tags: trunk
Changes

Modified .github/workflows/fedora-mingw.yml from [4f77255619] to [9e238dad53].

1
2
3
4
5
6
7
8
9
10
11
12


13
14
15
16
17
18
19
20
name: fedora-mingw
on: [push, pull_request]
jobs:
  tests:
    runs-on: ubuntu-latest
    strategy:
      matrix:
        include:
          - prefix: mingw32
            triple: i686-w64-mingw32
          - prefix: mingw64
            triple: x86_64-w64-mingw32


    container: fedora
    steps:
    - name: Install dependencies
      run: |
        sudo dnf upgrade --refresh -y
        sudo dnf install -y ${{matrix.prefix}}-gcc ${{matrix.prefix}}-openssl clang autoconf automake make wine
    - uses: actions/checkout@v4
    - name: autogen.sh












>
>
|







1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
name: fedora-mingw
on: [push, pull_request]
jobs:
  tests:
    runs-on: ubuntu-latest
    strategy:
      matrix:
        include:
          - prefix: mingw32
            triple: i686-w64-mingw32
          - prefix: mingw64
            triple: x86_64-w64-mingw32
          - prefix: ucrt64
            triple: x86_64-w64-mingw32ucrt
    container: fedora:41
    steps:
    - name: Install dependencies
      run: |
        sudo dnf upgrade --refresh -y
        sudo dnf install -y ${{matrix.prefix}}-gcc ${{matrix.prefix}}-openssl clang autoconf automake make wine
    - uses: actions/checkout@v4
    - name: autogen.sh