summaryrefslogtreecommitdiffstats
path: root/.github/workflows
diff options
context:
space:
mode:
authorDmitry Misharov <dmitry@openssl.org>2023-11-23 14:22:35 +0100
committerTomas Mraz <tomas@openssl.org>2023-11-30 08:50:25 +0100
commit5380e87267d05ed3a377b56c35162f9627d2bb71 (patch)
treee91e2ec880fd51f242925bd97798dadf5e60e9fb /.github/workflows
parent90e67e726f76ad378a514518b0c3b5256d67abfa (diff)
Add self-hosted runners
Added self-hosted runners for freebsd-x86_64 and ubuntu-aarch64. Reviewed-by: Tom Cosgrove <tom.cosgrove@arm.com> Reviewed-by: Anton Arapov <anton@openssl.org> Reviewed-by: Tomas Mraz <tomas@openssl.org> (Merged from https://github.com/openssl/openssl/pull/22804) (cherry picked from commit 6b7a11d8aa7abe50e6ebdd09a238e0a0df8cd228)
Diffstat (limited to '.github/workflows')
-rw-r--r--.github/workflows/ci.yml19
-rw-r--r--.github/workflows/os-zoo.yml19
2 files changed, 38 insertions, 0 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index c5643fbf5c..2ba14153c2 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -107,6 +107,25 @@ jobs:
- name: make test
run: make test HARNESS_JOBS=${HARNESS_JOBS:-4}
+ self-hosted:
+ strategy:
+ matrix:
+ os: [freebsd-13.2, ubuntu-arm64-22.04]
+ runs-on: ${{ matrix.os }}-self-hosted
+ continue-on-error: true
+ steps:
+ - uses: actions/checkout@v4
+ - name: config
+ run: ./config enable-fips enable-ec_nistp_64_gcc_128 enable-md2 enable-rc5 enable-ssl3 enable-ssl3-method enable-trace
+ - name: config dump
+ run: ./configdata.pm --dump
+ - name: make
+ run: make -j4
+ - name: get cpu info
+ run: ./util/opensslwrap.sh version -c
+ - name: make test
+ run: make test HARNESS_JOBS=${HARNESS_JOBS:-4}
+
minimal:
runs-on: ubuntu-latest
steps:
diff --git a/.github/workflows/os-zoo.yml b/.github/workflows/os-zoo.yml
index 29137bd7c7..2775208328 100644
--- a/.github/workflows/os-zoo.yml
+++ b/.github/workflows/os-zoo.yml
@@ -167,3 +167,22 @@ jobs:
- name: test
working-directory: _build
run: nmake test VERBOSE_FAILURE=yes HARNESS_JOBS=4
+
+ self-hosted:
+ strategy:
+ matrix:
+ os: [freebsd-13.2, ubuntu-arm64-22.04]
+ runs-on: ${{ matrix.os }}-self-hosted
+ continue-on-error: true
+ steps:
+ - uses: actions/checkout@v4
+ - name: config
+ run: ./config enable-fips enable-ec_nistp_64_gcc_128 enable-md2 enable-rc5 enable-ssl3 enable-ssl3-method enable-trace
+ - name: config dump
+ run: ./configdata.pm --dump
+ - name: make
+ run: make -j4
+ - name: get cpu info
+ run: ./util/opensslwrap.sh version -c
+ - name: make test
+ run: make test HARNESS_JOBS=${HARNESS_JOBS:-4}