Skip to content

Commit

Permalink
Revert Ubuntu docker changes
Browse files Browse the repository at this point in the history
  • Loading branch information
sirknightj committed Dec 4, 2024
1 parent 038fb39 commit 4a4ead8
Showing 1 changed file with 13 additions and 37 deletions.
50 changes: 13 additions & 37 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -98,9 +98,7 @@ jobs:
shell: bash

address-sanitizer:
runs-on: ubuntu-latest
container:
image: ubuntu:20.04
runs-on: ubuntu-20.04
env:
ASAN_OPTIONS: detect_odr_violation=0:detect_leaks=1
LSAN_OPTIONS: suppressions=../tst/suppressions/LSAN.supp
Expand Down Expand Up @@ -136,9 +134,7 @@ jobs:
cd build
timeout --signal=SIGABRT 60m ./tst/webrtc_client_test
undefined-behavior-sanitizer:
runs-on: ubuntu-latest
container:
image: ubuntu:20.04
runs-on: ubuntu-20.04
env:
UBSAN_OPTIONS: print_stacktrace=1:halt_on_error=1
CC: clang
Expand Down Expand Up @@ -194,9 +190,7 @@ jobs:
# ulimit -c unlimited -S
# timeout --signal=SIGABRT 60m build/tst/webrtc_client_test
thread-sanitizer:
runs-on: ubuntu-latest
container:
image: ubuntu:20.04
runs-on: ubuntu-20.04
env:
TSAN_OPTIONS: second_deadlock_stack=1:halt_on_error=1:suppressions=../tst/suppressions/TSAN.supp
CC: clang
Expand Down Expand Up @@ -230,9 +224,7 @@ jobs:
cd build
timeout --signal=SIGABRT 60m ./tst/webrtc_client_test
linux-gcc-4_4:
runs-on: ubuntu-latest
container:
image: ubuntu:20.04
runs-on: ubuntu-20.04
env:
AWS_KVS_LOG_LEVEL: 2
CC: gcc-4.4
Expand Down Expand Up @@ -270,7 +262,7 @@ jobs:
cd build
timeout --signal=SIGABRT 60m ./tst/webrtc_client_test
static-build-linux:
runs-on: ubuntu-latest
runs-on: ubuntu-20.04
container:
image: alpine:3.15.4
env:
Expand All @@ -294,9 +286,7 @@ jobs:
cmake .. -DBUILD_STATIC_LIBS=TRUE -DBUILD_TEST=TRUE
make
mbedtls-ubuntu-gcc:
runs-on: ubuntu-latest
container:
image: ubuntu:20.04
runs-on: ubuntu-20.04
env:
AWS_KVS_LOG_LEVEL: 2
permissions:
Expand Down Expand Up @@ -367,9 +357,7 @@ jobs:
timeout --signal=SIGABRT 60m ./tst/webrtc_client_test
mbedtls-ubuntu-gcc-4_4-build:
runs-on: ubuntu-latest
container:
image: ubuntu:20.04
runs-on: ubuntu-20.04
env:
AWS_KVS_LOG_LEVEL: 2
CC: gcc-4.4
Expand Down Expand Up @@ -401,9 +389,7 @@ jobs:
make
mbedtls-ubuntu-clang:
runs-on: ubuntu-latest
container:
image: ubuntu:20.04
runs-on: ubuntu-20.04
env:
CC: clang
CXX: clang++
Expand Down Expand Up @@ -488,9 +474,7 @@ jobs:
run: |
./scripts/check-sample.sh
ubuntu-os-build:
runs-on: ubuntu-latest
container:
image: ubuntu:20.04
runs-on: ubuntu-20.04
env:
AWS_KVS_LOG_LEVEL: 2
permissions:
Expand Down Expand Up @@ -520,9 +504,7 @@ jobs:
cd build
timeout --signal=SIGABRT 60m ./tst/webrtc_client_test
ubuntu-os-build-stats-calc-control:
runs-on: ubuntu-latest
container:
image: ubuntu:20.04
runs-on: ubuntu-20.04
env:
AWS_KVS_LOG_LEVEL: 2
permissions:
Expand Down Expand Up @@ -633,9 +615,7 @@ jobs:
# git config --system core.longpaths true
# .github\build_windows_mbedtls.bat
arm64-cross-compilation:
runs-on: ubuntu-latest
container:
image: ubuntu:20.04
runs-on: ubuntu-20.04
env:
CC: aarch64-linux-gnu-gcc
CXX: aarch64-linux-gnu-g++
Expand All @@ -653,9 +633,7 @@ jobs:
cmake .. -DBUILD_OPENSSL=TRUE -DBUILD_OPENSSL_PLATFORM=linux-generic64 -DBUILD_LIBSRTP_HOST_PLATFORM=x86_64-unknown-linux-gnu -DBUILD_LIBSRTP_DESTINATION_PLATFORM=arm-unknown-linux-uclibcgnueabi
make
linux-aarch64-cross-compilation:
runs-on: ubuntu-latest
container:
image: ubuntu:20.04
runs-on: ubuntu-20.04
env:
CC: aarch64-linux-gnu-gcc
CXX: aarch64-linux-gnu-g++
Expand All @@ -673,9 +651,7 @@ jobs:
cmake .. -DBUILD_OPENSSL=TRUE -DBUILD_OPENSSL_PLATFORM=linux-aarch64 -DBUILD_LIBSRTP_HOST_PLATFORM=x86_64-unknown-linux-gnu -DBUILD_LIBSRTP_DESTINATION_PLATFORM=arm-unknown-linux-uclibcgnueabi
make
arm32-cross-compilation:
runs-on: ubuntu-latest
container:
image: ubuntu:20.04
runs-on: ubuntu-20.04
env:
CC: arm-linux-gnueabi-gcc
CXX: arm-linux-gnueabi-g++
Expand Down

0 comments on commit 4a4ead8

Please sign in to comment.