Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

For lasse #123

Closed
wants to merge 11 commits into from
Closed

For lasse #123

wants to merge 11 commits into from

Commits on Jun 3, 2024

  1. xz: list: suppress -Wformat-nonliteral for Solaris

    Solaris' GCC can't understand that our use is fine, unlike modern compilers:
    ```
    list.c: In function 'print_totals_basic':
    list.c:1191:4: error: format not a string literal, argument types not checked [-Werror=format-nonliteral]
      uint64_to_str(totals.files, 0));
      ^~~~~~~~~~~~~
    cc1: all warnings being treated as errors
    ```
    
    It's presumably because of older gettext missing format attributes.
    
    This is with `gcc (GCC) 7.3.0`.
    thesamesam committed Jun 3, 2024
    Configuration menu
    Copy the full SHA
    4e38b04 View commit details
    Browse the repository at this point in the history
  2. ci: add Solaris

    Inspired by RsyncProject/rsync@3f2a38b.
    
    It runs on Solaris 5.11 via a VirtualBox VM.
    thesamesam committed Jun 3, 2024
    Configuration menu
    Copy the full SHA
    34f47a4 View commit details
    Browse the repository at this point in the history
  3. ci: add cifuzz

    xz is already part of oss-fuzz, but oss-fuzz provides & encourages [0]
    its 'CIFuzz' service to test individual PRs and commits.
    
    I think it can also run on a schedule but I haven't added that in (yet?)
    
    [0] https://google.github.io/oss-fuzz/getting-started/continuous-integration/
    thesamesam committed Jun 3, 2024
    Configuration menu
    Copy the full SHA
    42c7cd9 View commit details
    Browse the repository at this point in the history
  4. ci: add Clang to matrix

    The only non-trivial part here was macOS where 'gcc' is actually Apple Clang
    by default, so we have to go out of our way to get GCC from Homebrew, and do
    the same for Clang.
    thesamesam committed Jun 3, 2024
    Configuration menu
    Copy the full SHA
    384c964 View commit details
    Browse the repository at this point in the history
  5. ci: speed up Valgrind job by using --trace-children-skip-by-arg=...

    This addresses the issue I mentioned in 6c095a9
    and speeds up the Valgrind job a bit, because non-xz tools aren't run
    unnecessarily with Valgrind by the script tests.
    thesamesam committed Jun 3, 2024
    Configuration menu
    Copy the full SHA
    1ca4e76 View commit details
    Browse the repository at this point in the history
  6. ci: add po4a

    thesamesam committed Jun 3, 2024
    Configuration menu
    Copy the full SHA
    539b35c View commit details
    Browse the repository at this point in the history
  7. Updated actions

    radarhere authored and thesamesam committed Jun 3, 2024
    Configuration menu
    Copy the full SHA
    5fa60d1 View commit details
    Browse the repository at this point in the history
  8. ci: actually fail on FreeBSD

    Without "set -e" the job will always be successful.
    
    See vmactions/freebsd-vm#72
    junghans authored and thesamesam committed Jun 3, 2024
    Configuration menu
    Copy the full SHA
    c515927 View commit details
    Browse the repository at this point in the history
  9. ci: set -e on netbsd

    junghans authored and thesamesam committed Jun 3, 2024
    Configuration menu
    Copy the full SHA
    50f2a84 View commit details
    Browse the repository at this point in the history
  10. ci: set -e on openbsd

    junghans authored and thesamesam committed Jun 3, 2024
    Configuration menu
    Copy the full SHA
    556b768 View commit details
    Browse the repository at this point in the history
  11. ci: don't pin official GH actions via commit, just tag

    There's no real value in doing it via commit for official GH actions. We
    can keep using pinned commits for unofficial actions. It's hassle for no
    gain.
    
    Maybe going forward we can limit this further by only being paranoid
    for the jobs with any access to tokens.
    thesamesam committed Jun 3, 2024
    Configuration menu
    Copy the full SHA
    455fabd View commit details
    Browse the repository at this point in the history