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

Add additional test environments #103

Merged
merged 1 commit into from
Jan 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
46 changes: 44 additions & 2 deletions .github/workflows/breakage-against-linux-ponyc-latest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ on:
types: [shared-docker-linux-builders-updated]

jobs:
vs-ponyc-latest:
name: Test against ponyc main
libressl-3-vs-ponyc-latest:
name: LibreSSL 3.x with most recent ponyc latest
runs-on: ubuntu-latest
container:
image: ghcr.io/ponylang/shared-docker-ci-x86-64-unknown-linux-builder-with-libressl-3.7.3:latest
Expand All @@ -25,3 +25,45 @@ jobs:
type: stream
topic: ${{ github.repository }} scheduled job failure
content: ${{ github.server_url}}/${{ github.repository }}/actions/runs/${{ github.run_id }} failed.

openssl-1-vs-ponyc-release:
name: OpenSSL 1.x with most recent ponyc latest
runs-on: ubuntu-latest
container:
image: ghcr.io/ponylang/shared-docker-ci-x86-64-unknown-linux-builder-with-openssl_1.1.1w:latest
steps:
- uses: actions/checkout@v3
- name: Test
run: make test config=debug ssl=1.1.x
- name: Send alert on failure
if: ${{ failure() }}
uses: zulip/github-actions-zulip/send-message@b62d5a0e48a4d984ea4fce5dd65ba691963d4db4
with:
api-key: ${{ secrets.ZULIP_SCHEDULED_JOB_FAILURE_API_KEY }}
email: ${{ secrets.ZULIP_SCHEDULED_JOB_FAILURE_EMAIL }}
organization-url: 'https://ponylang.zulipchat.com/'
to: notifications
type: stream
topic: ${{ github.repository }} scheduled job failure
content: ${{ github.server_url}}/${{ github.repository }}/actions/runs/${{ github.run_id }} failed.

openssl-3-vs-ponyc-release:
name: OpenSSL 3.x with most recent ponyc latest
runs-on: ubuntu-latest
container:
image: ghcr.io/ponylang/shared-docker-ci-x86-64-unknown-linux-builder-with-openssl_3.1.3:latest
steps:
- uses: actions/checkout@v3
- name: Test
run: make test config=debug ssl=3.0.x
- name: Send alert on failure
if: ${{ failure() }}
uses: zulip/github-actions-zulip/send-message@b62d5a0e48a4d984ea4fce5dd65ba691963d4db4
with:
api-key: ${{ secrets.ZULIP_SCHEDULED_JOB_FAILURE_API_KEY }}
email: ${{ secrets.ZULIP_SCHEDULED_JOB_FAILURE_EMAIL }}
organization-url: 'https://ponylang.zulipchat.com/'
to: notifications
type: stream
topic: ${{ github.repository }} scheduled job failure
content: ${{ github.server_url}}/${{ github.repository }}/actions/runs/${{ github.run_id }} failed.
28 changes: 24 additions & 4 deletions .github/workflows/pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,18 +32,38 @@ jobs:
- name: Verify CHANGELOG
run: changelog-tool verify

vs-ponyc-release:
name: Test against recent ponyc release
libressl-3-vs-ponyc-release:
name: LibreSSL 3.x with most recent ponyc release
runs-on: ubuntu-latest
container:
image: ghcr.io/ponylang/shared-docker-ci-x86-64-unknown-linux-builder-with-libressl-3.7.3:release
steps:
- uses: actions/checkout@v3
- name: Test
run: make test ssl=0.9.0 config=debug
run: make test config=debug ssl=0.9.0

openssl-1-vs-ponyc-release:
name: OpenSSL 1.x with most recent ponyc release
runs-on: ubuntu-latest
container:
image: ghcr.io/ponylang/shared-docker-ci-x86-64-unknown-linux-builder-with-openssl_1.1.1w:release
steps:
- uses: actions/checkout@v3
- name: Test
run: make test config=debug ssl=1.1.x

openssl-3-vs-ponyc-release:
name: OpenSSL 3.x with most recent ponyc release
runs-on: ubuntu-latest
container:
image: ghcr.io/ponylang/shared-docker-ci-x86-64-unknown-linux-builder-with-openssl_3.1.3:release
steps:
- uses: actions/checkout@v3
- name: Test
run: make test config=debug ssl=3.0.x

windows-vs-ponyc-release:
name: Test against recent ponyc release on Windows
name: Windows with most recent ponyc release
runs-on: windows-2022
steps:
- uses: actions/checkout@v3
Expand Down
Loading