Skip to content
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
2 changes: 1 addition & 1 deletion .github/workflows/beta.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ env:

jobs:
test-all:
runs-on: ubuntu-latest
runs-on: ubuntu-20.04
strategy:
matrix:
rust: [beta]
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build_binary.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ env:
jobs:
linux:
name: Linux
runs-on: ubuntu-latest
runs-on: ubuntu-20.04

steps:
- uses: actions/checkout@v3
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/build_library.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
- aarch64

name: Python Linux ${{ matrix.build-arch }}
runs-on: ubuntu-latest
runs-on: ubuntu-20.04

steps:
- uses: actions/checkout@v3
Expand Down Expand Up @@ -89,7 +89,7 @@ jobs:

sdist:
name: Python sdist
runs-on: ubuntu-latest
runs-on: ubuntu-20.04

steps:
- uses: actions/checkout@v3
Expand Down
18 changes: 9 additions & 9 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ env:
jobs:
lint:
name: Lint
runs-on: ubuntu-latest
runs-on: ubuntu-20.04

steps:
- name: Install libcurl-dev
Expand Down Expand Up @@ -73,7 +73,7 @@ jobs:

lint_default:
name: Lint Rust Default Features
runs-on: ubuntu-latest
runs-on: ubuntu-20.04

steps:
- name: Install libcurl-dev
Expand Down Expand Up @@ -140,14 +140,14 @@ jobs:

test_all:
timeout-minutes: 15
name: Test All Features (ubuntu-latest)
runs-on: ubuntu-latest
name: Test All Features (ubuntu-20.04)
runs-on: ubuntu-20.04

# Skip redundant checks for library releases
if: "!startsWith(github.ref, 'refs/heads/release-library/')"

# Testing all features requires Docker container operations that are only available on
# `ubuntu-latest`. This `test-all` job is to be seen as complementary to the `test` job. If
# `ubuntu-20.04`. This `test-all` job is to be seen as complementary to the `test` job. If
# services become available on other platforms, the jobs should be consolidated. See
# https://docs.github.com/en/actions/guides/about-service-containers

Expand Down Expand Up @@ -193,7 +193,7 @@ jobs:
if: "!startsWith(github.ref, 'refs/heads/release/')"

name: Test Python ${{ matrix.python-version }}
runs-on: ubuntu-latest
runs-on: ubuntu-20.04

steps:
- uses: actions/checkout@v3
Expand Down Expand Up @@ -227,7 +227,7 @@ jobs:

test_integration:
name: Integration Tests
runs-on: ubuntu-latest
runs-on: ubuntu-20.04
timeout-minutes: 20

# Skip redundant checks for library releases
Expand Down Expand Up @@ -297,7 +297,7 @@ jobs:

sentry-relay-integration-tests:
name: Sentry-Relay Integration Tests
runs-on: ubuntu-latest
runs-on: ubuntu-20.04
timeout-minutes: 25

# Skip redundant checks for library releases
Expand Down Expand Up @@ -363,7 +363,7 @@ jobs:

self-hosted-end-to-end:
needs: []
runs-on: ubuntu-latest
runs-on: ubuntu-20.04
# temporary, remove once we are confident the action is working
continue-on-error: true

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/danger.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ on:
jobs:
build:
name: Changelogs
runs-on: ubuntu-latest
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ env:
jobs:
cargo_docs:
name: Cargo Docs
runs-on: ubuntu-latest
runs-on: ubuntu-20.04

steps:
- name: Install libcurl-dev
Expand Down Expand Up @@ -56,7 +56,7 @@ jobs:

event_schema:
name: Event Schema
runs-on: ubuntu-latest
runs-on: ubuntu-20.04

steps:
- uses: actions/checkout@v3
Expand Down Expand Up @@ -112,7 +112,7 @@ jobs:

metrics_docs:
name: Metrics Docs
runs-on: ubuntu-latest
runs-on: ubuntu-20.04

steps:
- uses: actions/checkout@v3
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/enforce-license-compliance.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ on:

jobs:
enforce-license-compliance:
runs-on: ubuntu-latest
runs-on: ubuntu-20.04
steps:
- name: "Enforce License Compliance"
uses: getsentry/action-enforce-license-compliance@main
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release_binary.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ on:

jobs:
release:
runs-on: ubuntu-latest
runs-on: ubuntu-20.04
name: "Release a new Relay version"

steps:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release_library.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ on:

jobs:
release:
runs-on: ubuntu-latest
runs-on: ubuntu-20.04
name: "Release a new librelay version"

steps:
Expand Down