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

Downgrade to Ubuntu 22 #471

Merged
merged 1 commit into from
Jan 29, 2025
Merged
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
18 changes: 9 additions & 9 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -208,7 +208,7 @@ jobs:
./tst/producer_test

linux-gcc-code-coverage:
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
env:
AWS_KVS_LOG_LEVEL: 2
permissions:
Expand Down Expand Up @@ -241,7 +241,7 @@ jobs:
bash <(curl -s https://codecov.io/bash)

address-sanitizer:
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
permissions:
id-token: write
contents: read
Expand Down Expand Up @@ -271,7 +271,7 @@ jobs:
timeout --signal=SIGABRT 150m ./tst/producer_test --gtest_break_on_failure

undefined-behavior-sanitizer:
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
permissions:
id-token: write
contents: read
Expand Down Expand Up @@ -356,7 +356,7 @@ jobs:
# timeout --signal=SIGABRT 150m ./tst/producer_test --gtest_break_on_failure

ubuntu-gcc:
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
env:
AWS_KVS_LOG_LEVEL: 2
CC: gcc
Expand Down Expand Up @@ -420,7 +420,7 @@ jobs:
& "D:\a\amazon-kinesis-video-streams-producer-c\amazon-kinesis-video-streams-producer-c\build\tst\producer_test.exe" --gtest_filter="-ProducerFunctionalityTest.pressure_on_buffer_duration_fail_new_connection_at_token_rotation"

arm64-cross-compilation:
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
env:
CC: aarch64-linux-gnu-gcc
CXX: aarch64-linux-gnu-g++
Expand All @@ -439,7 +439,7 @@ jobs:
make
file libcproducer.so
linux-aarch64-cross-compilation:
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
env:
CC: aarch64-linux-gnu-gcc
CXX: aarch64-linux-gnu-g++
Expand All @@ -458,7 +458,7 @@ jobs:
make
file libcproducer.so
arm32-cross-compilation:
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
env:
CC: arm-linux-gnueabi-gcc
CXX: arm-linux-gnueabi-g++
Expand All @@ -478,7 +478,7 @@ jobs:
file libcproducer.so

linux-build-gcc-static:
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
steps:
- name: Clone repository
uses: actions/checkout@v3
Expand All @@ -489,7 +489,7 @@ jobs:
make

linux-thread-size-check:
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
permissions:
id-token: write
contents: read
Expand Down
Loading