Skip to content

Commit 141c63c

Browse files
committed
Enable default configure test.
1 parent ef048b0 commit 141c63c

File tree

2 files changed

+6
-0
lines changed

2 files changed

+6
-0
lines changed

.github/workflows/test.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -72,6 +72,8 @@ jobs:
7272
# Build for Ubuntu20
7373
- name: Build on Ubuntu20, baseline
7474
run: DOCKER_BUILDKIT=1 docker build -f trunk/Dockerfile.builds --target ubuntu20-baseline .
75+
- name: Build on Ubuntu20, default
76+
run: DOCKER_BUILDKIT=1 docker build -f trunk/Dockerfile.builds --target ubuntu20-default .
7577
- name: Build on Ubuntu20, with all features
7678
run: DOCKER_BUILDKIT=1 docker build -f trunk/Dockerfile.builds --target ubuntu20-all .
7779
runs-on: ubuntu-22.04

trunk/Dockerfile.builds

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,10 @@ FROM ossrs/srs:ubuntu20-cache AS ubuntu20-baseline
4242
COPY . /srs
4343
RUN cd /srs/trunk && ./configure --sanitizer=on --srt=off --gb28181=off && make
4444

45+
FROM ossrs/srs:ubuntu20-cache AS ubuntu20-default
46+
COPY . /srs
47+
RUN cd /srs/trunk && ./configure && make
48+
4549
FROM ossrs/srs:ubuntu20-cache AS ubuntu20-all
4650
COPY . /srs
4751
RUN cd /srs/trunk && ./configure --sanitizer=on --srt=on --gb28181=on --apm=on --h265=on && make

0 commit comments

Comments
 (0)