Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

CI for OpenBSD 7.5 #21

Merged
merged 3 commits into from
Apr 14, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 12 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ on:
branches-ignore:
- main
paths:
- '.github/workflows/*'
- 'ports/**'

env:
Expand All @@ -19,6 +20,14 @@ jobs:
strategy:
matrix:
os:
- name: 7.5-amd64
arch: x86-64
version: "7.5"
host: ubuntu-latest
- name: 7.5-arm64
arch: arm64
version: "7.5"
host: ubuntu-latest
- name: 7.4-amd64
arch: x86-64
version: "7.4"
Expand All @@ -36,7 +45,7 @@ jobs:
steps:
- uses: actions/checkout@v4
- name: Build
uses: cross-platform-actions/action@v0.23.0
uses: cross-platform-actions/action@v0.24.0
with:
operating_system: openbsd
architecture: ${{ matrix.os.arch }}
Expand Down Expand Up @@ -96,8 +105,8 @@ jobs:
- name: Check for modified files
id: git-check
run: |
git status --porcelain
echo "modified=$(if [ -n "$(git status --porcelain)" ]; then echo "true"; else echo "false"; fi)" >> $GITHUB_OUTPUT
git status -s -uno
echo "modified=$(if [ -n "$(git status -s -uno)" ]; then echo "true"; else echo "false"; fi)" >> $GITHUB_OUTPUT

- name: Push changes back to the branch
# It's important changes are only pushed back to the branch once within
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ This repo contains code which will allow you to build and install the
For more information, read the blog post
[AWS CLIv2 on OpenBSD](https://www.packetmischief.ca/2023/08/16/awscliv2-on-openbsd/).

The ports in this repo are tested on OpenBSD 7.4 using the amd64 and arm64
The ports in this repo are tested on OpenBSD 7.4 and 7.5 using the amd64 and arm64
architectures.

## Installation
Expand Down
Loading