diff options
| author | Theo Buehler <tb@openbsd.org> | 2023-12-15 22:26:00 +0100 |
|---|---|---|
| committer | Theo Buehler <tb@openbsd.org> | 2023-12-15 22:26:00 +0100 |
| commit | fef71862bc53f95dc696fc3be4a71a336e234266 (patch) | |
| tree | f36edc65d3196b27e198d3a132642afcc28a96d0 | |
| parent | f6f90b977913fbd1951c249f6e7bbf76ea32de77 (diff) | |
| parent | 276e5767f0e681ce880759f96647cf519f362a96 (diff) | |
| download | portable-fef71862bc53f95dc696fc3be4a71a336e234266.tar.gz portable-fef71862bc53f95dc696fc3be4a71a336e234266.tar.bz2 portable-fef71862bc53f95dc696fc3be4a71a336e234266.zip | |
Land #975
| -rw-r--r-- | .github/workflows/solaris.yml | 32 | ||||
| -rw-r--r-- | .github/workflows/solaris_test.yml | 28 | ||||
| -rw-r--r-- | README.md | 1 |
3 files changed, 33 insertions, 28 deletions
diff --git a/.github/workflows/solaris.yml b/.github/workflows/solaris.yml new file mode 100644 index 0000000..2c6ee49 --- /dev/null +++ b/.github/workflows/solaris.yml | |||
| @@ -0,0 +1,32 @@ | |||
| 1 | # GitHub Actions workflow to run tests on a Solaris VM. | ||
| 2 | name: "Solaris" | ||
| 3 | |||
| 4 | on: | ||
| 5 | workflow_dispatch: | ||
| 6 | schedule: | ||
| 7 | - cron: "0 0 * * *" # At 00:00 daily. | ||
| 8 | |||
| 9 | jobs: | ||
| 10 | test: | ||
| 11 | name: "Solaris" | ||
| 12 | runs-on: ubuntu-latest | ||
| 13 | permissions: | ||
| 14 | contents: read | ||
| 15 | steps: | ||
| 16 | - name: "Checkout repository" | ||
| 17 | uses: actions/checkout@v4 | ||
| 18 | |||
| 19 | - name: "Setup" | ||
| 20 | run: | | ||
| 21 | sudo apt-get update | ||
| 22 | sudo apt-get install -y automake autoconf libtool | ||
| 23 | ./autogen.sh | ||
| 24 | |||
| 25 | - name: "Build on VM" | ||
| 26 | uses: vmactions/solaris-vm@v1 | ||
| 27 | with: | ||
| 28 | prepare: | | ||
| 29 | pkg install gcc make | ||
| 30 | run: | | ||
| 31 | MAKE=gmake ./configure | ||
| 32 | gmake -j2 check || (cat tests/test-suite.log && exit 1) | ||
diff --git a/.github/workflows/solaris_test.yml b/.github/workflows/solaris_test.yml deleted file mode 100644 index 6470278..0000000 --- a/.github/workflows/solaris_test.yml +++ /dev/null | |||
| @@ -1,28 +0,0 @@ | |||
| 1 | name: solaris_ci | ||
| 2 | |||
| 3 | on: | ||
| 4 | workflow_dispatch: | ||
| 5 | |||
| 6 | jobs: | ||
| 7 | build-native: | ||
| 8 | strategy: | ||
| 9 | matrix: | ||
| 10 | release: [11.4] | ||
| 11 | runs-on: ubuntu-latest | ||
| 12 | continue-on-error: false | ||
| 13 | name: Solaris ${{ matrix.release }} | ||
| 14 | steps: | ||
| 15 | - name: Checkout source | ||
| 16 | uses: actions/checkout@main | ||
| 17 | - name: Configure source | ||
| 18 | run: | | ||
| 19 | brew install automake autoconf libtool | ||
| 20 | ./autogen.sh | ||
| 21 | - name: Build on VM | ||
| 22 | uses: vmactions/solaris-vm@v1 | ||
| 23 | with: | ||
| 24 | prepare: | | ||
| 25 | pkg install gcc make | ||
| 26 | run: | | ||
| 27 | MAKE=gmake ./configure | ||
| 28 | gmake -j2 check || (cat tests/test-suite.log && exit 1) | ||
| @@ -4,6 +4,7 @@ | |||
| 4 | [](https://github.com/libressl/portable/actions/workflows/linux.yml) | 4 | [](https://github.com/libressl/portable/actions/workflows/linux.yml) |
| 5 | [](https://github.com/libressl/portable/actions/workflows/macos.yml) | 5 | [](https://github.com/libressl/portable/actions/workflows/macos.yml) |
| 6 | [](https://github.com/libressl/portable/actions/workflows/android.yml) | 6 | [](https://github.com/libressl/portable/actions/workflows/android.yml) |
| 7 | [](https://github.com/libressl/portable/actions/workflows/solaris.yml) | ||
| 7 | [](https://bugs.chromium.org/p/oss-fuzz/issues/list?sort=-opened&can=1&q=proj:libressl) | 8 | [](https://bugs.chromium.org/p/oss-fuzz/issues/list?sort=-opened&can=1&q=proj:libressl) |
| 8 | 9 | ||
| 9 | LibreSSL is a fork of [OpenSSL](https://www.openssl.org) 1.0.1g developed by the | 10 | LibreSSL is a fork of [OpenSSL](https://www.openssl.org) 1.0.1g developed by the |
