Skip to content

Commit

Permalink
Land #975
Browse files Browse the repository at this point in the history
  • Loading branch information
botovq committed Dec 15, 2023
2 parents f6f90b9 + 276e576 commit fef7186
Show file tree
Hide file tree
Showing 3 changed files with 33 additions and 28 deletions.
32 changes: 32 additions & 0 deletions .github/workflows/solaris.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
# GitHub Actions workflow to run tests on a Solaris VM.
name: "Solaris"

on:
workflow_dispatch:
schedule:
- cron: "0 0 * * *" # At 00:00 daily.

jobs:
test:
name: "Solaris"
runs-on: ubuntu-latest
permissions:
contents: read
steps:
- name: "Checkout repository"
uses: actions/checkout@v4

- name: "Setup"
run: |
sudo apt-get update
sudo apt-get install -y automake autoconf libtool
./autogen.sh
- name: "Build on VM"
uses: vmactions/solaris-vm@v1
with:
prepare: |
pkg install gcc make
run: |
MAKE=gmake ./configure
gmake -j2 check || (cat tests/test-suite.log && exit 1)
28 changes: 0 additions & 28 deletions .github/workflows/solaris_test.yml

This file was deleted.

1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
[![Linux Build Status](https://github.com/libressl/portable/actions/workflows/linux.yml/badge.svg)](https://github.com/libressl/portable/actions/workflows/linux.yml)
[![macOS Build Status](https://github.com/libressl/portable/actions/workflows/macos.yml/badge.svg)](https://github.com/libressl/portable/actions/workflows/macos.yml)
[![Android Build Status](https://github.com/libressl/portable/actions/workflows/android.yml/badge.svg)](https://github.com/libressl/portable/actions/workflows/android.yml)
[![Solaris Build Status](https://github.com/libressl/portable/actions/workflows/solaris.yml/badge.svg)](https://github.com/libressl/portable/actions/workflows/solaris.yml)
[![Fuzzing Status](https://oss-fuzz-build-logs.storage.googleapis.com/badges/libressl.svg)](https://bugs.chromium.org/p/oss-fuzz/issues/list?sort=-opened&can=1&q=proj:libressl)

LibreSSL is a fork of [OpenSSL](https://www.openssl.org) 1.0.1g developed by the
Expand Down

0 comments on commit fef7186

Please sign in to comment.