ObjFW  Check-in [8cb5b89234]

Overview
Comment:Add GCC on NetBSD to GitHub Actions
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA3-256: 8cb5b89234f6d77e5901daaf5dc9534d72ad19ee97aeb00465936d1b876cb71d
User & Date: js on 2023-04-16 13:11:18
Other Links: manifest | tags
Context
2023-04-16
13:42
utils/ofatalkcfg: Add support for showing config check-in: be9bad7ce0 user: js tags: trunk
13:11
Add GCC on NetBSD to GitHub Actions check-in: 8cb5b89234 user: js tags: trunk
13:08
Add NetBSD to GitHub Actions check-in: 1f3034f11c user: js tags: trunk
Changes

Added .github/workflows/netbsd-gcc.yml version [da44403819].











































































>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
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
26
27
28
29
30
31
32
33
34
35
36
37
name: netbsd-gcc
on: [push, pull_request]
jobs:
  tests:
    runs-on: macos-12
    strategy:
      matrix:
        configure_flags:
          -
          - --enable-seluid24
          - --disable-compiler-tls
          - --disable-threads
          - --disable-threads --disable-sockets
          - --disable-threads --disable-files
          - --disable-threads --disable-sockets --disable-files
          - --disable-sockets
          - --disable-sockets --disable-files
          - --disable-files
          - --disable-shared
          - --disable-shared --enable-seluid24
          - --disable-compiler-tls --disable-threads
          - --with-tls=gnutls
          - --with-tls=gnutls --disable-shared
    steps:
    - uses: actions/checkout@v3
    - uses: vmactions/netbsd-vm@v0
      with:
        usesh: true
        copyback: false
        prepare: |
          /usr/sbin/pkg_add autoconf automake
        run: |
          ./autogen.sh
          ./configure OBJC=gcc ${{ matrix.configure_flags }}
          make -j4
          make check
          make install

Modified .github/workflows/netbsd.yml from [f304a3b4c2] to [021d58e5b5].

27
28
29
30
31
32
33
34
35
36
37
      with:
        usesh: true
        copyback: false
        prepare: |
          /usr/sbin/pkg_add autoconf automake clang
        run: |
          ./autogen.sh
          ./configure ${{ matrix.configure_flags }}
          make -j$(sysctl -n machdep.cpu.thread_count)
          make check
          make install







|
|


27
28
29
30
31
32
33
34
35
36
37
      with:
        usesh: true
        copyback: false
        prepare: |
          /usr/sbin/pkg_add autoconf automake clang
        run: |
          ./autogen.sh
          ./configure OBJC=clang ${{ matrix.configure_flags }}
          make -j4
          make check
          make install