Skip to content

Commit

Permalink
Fix #53: Add support for NetBSD 9.3
Browse files Browse the repository at this point in the history
  • Loading branch information
jacob-carlborg committed May 28, 2023
1 parent 8dc37f7 commit bb2a4eb
Show file tree
Hide file tree
Showing 6 changed files with 21 additions and 5 deletions.
14 changes: 14 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -226,6 +226,20 @@ jobs:
uname:
hardware: amd64

- name: NetBSD
version: '9.3'
host: ubuntu-latest
workDirectory: /home/runner/work/action/action
uname:
hardware: amd64

- name: NetBSD
version: '9.3'
host: macos-latest
workDirectory: /Users/runner/work/action/action
uname:
hardware: amd64

steps:
- name: Checkout
uses: actions/checkout@v3
Expand Down
1 change: 1 addition & 0 deletions changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ 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]
- Add support for NetBSD 9.3 ([#53](https://github.com/cross-platform-actions/action/issues/53))

## [0.13.0] - 2023-04-28
### 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.

5 changes: 3 additions & 2 deletions readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ Some of the features that this action supports include:

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.3, one which runs
NetBSD 9.2 and one which runs OpenBSD 7.3 on ARM64.
NetBSD 9.3 and one which runs OpenBSD 7.3 on ARM64.

```yaml
name: CI
Expand Down Expand Up @@ -47,7 +47,7 @@ jobs:

- name: netbsd
architecture: x86-64
version: '9.2'
version: '9.3'
host: ubuntu-latest

steps:
Expand Down Expand Up @@ -133,6 +133,7 @@ operating system will list which versions are supported.

| Version | x86-64 |
| ------- | ------ |
| 9.3 ||
| 9.2 ||

### Hypervisors
Expand Down
2 changes: 1 addition & 1 deletion src/version.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
const version = {
operating_system: {
freebsd: 'v0.4.0',
netbsd: 'v0.1.0',
netbsd: 'v0.2.0-rc1',
openbsd: 'v0.6.0'
},

Expand Down

0 comments on commit bb2a4eb

Please sign in to comment.