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

github/workflows: Update some builders #67

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .github/workflows/build_tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ jobs:
runs-on: ubuntu-latest

container:
image: alpine
image: alpine:edge

steps:
- name: Install tools/deps
Expand All @@ -101,15 +101,15 @@ jobs:
git config --global --add safe.directory /__w/libmtdac/libmtdac
CFLAGS=-Werror make V=1

# Fedora 34 / glibc 2.33 / gcc 11.2 / clang 12.0
# Fedora 35 / glibc 2.34 / gcc 11.2 / clang 13.0
# Fedora 37 / glibc 2.36 / gcc 12.1 / clang 15
# Fedora 38 / glibc 2.37 / gcc 13.1 / clang 16
fedora:
runs-on: ubuntu-latest

strategy:
fail-fast: false
matrix:
os: [ 'fedora:34', 'fedora:35' ]
os: [ 'fedora:37', 'fedora:38' ]
compiler: [ 'gcc', 'clang' ]

container:
Expand Down
Loading