Skip to content

Commit

Permalink
Fix #74: Add support for FreeBSD 14.0
Browse files Browse the repository at this point in the history
  • Loading branch information
jacob-carlborg committed Feb 16, 2024
1 parent 4a39284 commit c04fd7f
Show file tree
Hide file tree
Showing 6 changed files with 32 additions and 6 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,29 @@ jobs:
- architecture: { name: arm64 }
host: { name: macos-latest }

include:
- version: '14.0'
architecture: { name: arm64 }
host:
name: ubuntu-latest
work_directory: /home/runner/work/action/action

- version: '14.0'
architecture:
name: x86-64
uname: amd64
host:
name: ubuntu-latest
work_directory: /home/runner/work/action/action

- version: '14.0'
architecture:
name: x86-64
uname: amd64
host:
name: macos-latest
work_directory: /Users/runner/work/action/action

steps:
- name: Checkout
uses: actions/checkout@v4
Expand Down
3 changes: 3 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]
### Added
- Add support for FreeBSD 14.0 ([#74](https://github.com/cross-platform-actions/action/issues/74))

### Fixed
- OpenBSD VM fails during "Initializing VM" with QEMU on macOS ([#73](https://github.com/cross-platform-actions/action/issues/73))
- Use same options for rsync in both directions ([#76](https://github.com/cross-platform-actions/action/issues/76))
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.

6 changes: 3 additions & 3 deletions readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,11 +46,10 @@ jobs:
env | sort
```


### Full Example

Here's a sample workflow file which will set up a matrix resulting in four jobs.
One which will run on FreeBSD 13.2, one which runs OpenBSD 7.4, one which runs
One which will run on FreeBSD 14.0, one which runs OpenBSD 7.4, one which runs
NetBSD 9.3 and one which runs OpenBSD 7.4 on ARM64.

```yaml
Expand All @@ -66,7 +65,7 @@ jobs:
os:
- name: freebsd
architecture: x86-64
version: '13.2'
version: '14.0'
host: macos-12

- name: openbsd
Expand Down Expand Up @@ -184,6 +183,7 @@ operating system will list which versions are supported.

| Version | x86-64 | arm64 |
| ------- | ------ | ------ |
| 14.0 |||
| 13.2 |||
| 13.1 |||
| 13.0 |||
Expand Down
2 changes: 1 addition & 1 deletion src/version.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
const version = {
operating_system: {
freebsd: 'v0.5.0',
freebsd: 'v0.6.0',
netbsd: 'v0.2.0',
openbsd: 'v0.7.0'
},
Expand Down

0 comments on commit c04fd7f

Please sign in to comment.