Skip to content

Commit

Permalink
Use macos-arm-oss instead of macos-11 (#137)
Browse files Browse the repository at this point in the history
macos-11 (Big Sur) is EOL today. I removed it and add `macos-arm-oss`
instead of `macos-11`. `macos-arm-oss` is `macos-13` with Apple Silicon
architecture. We can cover with them for real world usage.
  • Loading branch information
hsbt authored Jan 24, 2024
1 parent fd4bb4e commit a548f4e
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 5 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ jobs:
fail-fast: false
matrix:
os:
- macos-11
- macos-12
- macos-arm-oss
- ubuntu-latest
- windows-latest
ruby:
Expand All @@ -29,6 +29,7 @@ jobs:
- { os: windows-latest , ruby: mingw }
- { os: windows-latest , ruby: mswin }
exclude:
- { os: macos-arm-oss , ruby: '2.5' }
- { os: windows-latest , ruby: '3.0' }
- { os: windows-latest , ruby: debug }

Expand Down Expand Up @@ -80,7 +81,7 @@ jobs:
fail-fast: false
matrix:
service:
- fedora-33
- fedora-latest

steps:
- uses: actions/checkout@v4
Expand Down
4 changes: 2 additions & 2 deletions docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
version: "3.5"

services:
fedora-33:
fedora-latest:
build:
context: .
dockerfile: dockerfiles/fedora-33.dockerfile
dockerfile: dockerfiles/fedora-latest.dockerfile
volumes:
- .:/source:delegated
command:
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM fedora:33
FROM fedora:latest

RUN \
dnf install -y \
Expand Down

0 comments on commit a548f4e

Please sign in to comment.