Skip to content

Commit

Permalink
Add support for OpenBSD 7.6
Browse files Browse the repository at this point in the history
  • Loading branch information
jacob-carlborg committed Oct 9, 2024
1 parent c306e1a commit 5363044
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 7 deletions.
1 change: 1 addition & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -114,6 +114,7 @@ jobs:
fail-fast: false
matrix:
version:
- '7.6'
- '7.5'
- '7.4'
- '7.3'
Expand Down
1 change: 1 addition & 0 deletions changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## [Unreleased]
### Added
- Add support for FreeBSD 13.4
- Add support for OpenBSD 7.6 ([openbsd-builder#20](https://github.com/cross-platform-actions/openbsd-builder/issues/20))

## [0.25.0] - 2024-07-11
### Added
Expand Down
2 changes: 1 addition & 1 deletion dist/index.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/index.js.map

Large diffs are not rendered by default.

9 changes: 5 additions & 4 deletions readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,8 +49,8 @@ jobs:
### Full Example
Here's a sample workflow file which will set up a matrix resulting in four
jobs. One which will run on FreeBSD 14.0, one which runs OpenBSD 7.5, one which
runs NetBSD 10.0, one which runs OpenBSD 7.5 on ARM64 and one which runs NetBSD
jobs. One which will run on FreeBSD 14.0, one which runs OpenBSD 7.6, one which
runs NetBSD 10.0, one which runs OpenBSD 7.6 on ARM64 and one which runs NetBSD
10.0 on ARM64.
```yaml
Expand All @@ -70,11 +70,11 @@ jobs:

- name: openbsd
architecture: x86-64
version: '7.5'
version: '7.6'

- name: openbsd
architecture: arm64
version: '7.5'
version: '7.6'

- name: netbsd
architecture: x86-64
Expand Down Expand Up @@ -172,6 +172,7 @@ operating system will list which versions are supported.

| Version | x86-64 | arm64 |
| ------- | ------ | ------ |
| 7.6 | ✅ | ✅ |
| 7.5 | ✅ | ✅ |
| 7.4 | ✅ | ✅ |
| 7.3 | ✅ | ✅ |
Expand Down
2 changes: 1 addition & 1 deletion src/version.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ const version = {
operating_system: {
freebsd: 'v0.9.0',
netbsd: 'v0.4.0',
openbsd: 'v0.8.0'
openbsd: 'v0.8.0-rc1'
},

resources: 'v0.11.0'
Expand Down

0 comments on commit 5363044

Please sign in to comment.