Skip to content

Commit

Permalink
fixup! Try operating system specific jobs
Browse files Browse the repository at this point in the history
  • Loading branch information
jacob-carlborg committed Jul 25, 2023
1 parent c300c79 commit 97e6d7b
Showing 1 changed file with 35 additions and 0 deletions.
35 changes: 35 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -484,6 +484,41 @@ jobs:
uname_hardware: ${{ matrix.architecture.uname || matrix.architecture.name }}
work_directory: ${{ matrix.host.work_directory }}


NetBSD:
name: NetBSD ${{ matrix.architecture.name }} ${{ matrix.version }} on ${{ matrix.host.name }}
runs-on: ${{ matrix.host.name }}
timeout-minutes: 5
strategy:
fail-fast: false
matrix:
version:
- '9.3'
- '9.2'

architecture:
- name: x86-64
uname: amd64

host:
- name: ubuntu-latest
work_directory: /home/runner/work/action/action

steps:
- name: Checkout
uses: actions/checkout@v3
with:
persist-credentials: false

- name: test
uses: ./.github/workflows/support/test
with:
name: NetBSD
architecture: ${{ matrix.architecture.name }}
version: ${{ matrix.version }}
uname_hardware: ${{ matrix.architecture.uname || matrix.architecture.name }}
work_directory: ${{ matrix.host.work_directory }}

# test-no-env:
# timeout-minutes: 5
# name: Test without environment variables
Expand Down

0 comments on commit 97e6d7b

Please sign in to comment.