Skip to content

Commit 6245a06

Browse files
committed
drop script
1 parent 66fbb42 commit 6245a06

File tree

1 file changed

+11
-8
lines changed

1 file changed

+11
-8
lines changed

.github/workflows/build-and-test.yml

Lines changed: 11 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -2,23 +2,26 @@ name: Build and Test
22

33
on:
44
push:
5-
branches: [ "master", "migrate-ci" ]
5+
branches: [ "main", "migrate-ci" ]
66
pull_request:
7-
branches: [ "master" ]
7+
branches: [ "main" ]
88

99
env:
1010
BUILD_TYPE: Release
1111

1212
jobs:
1313
build-and-test:
1414
runs-on: ubuntu-latest
15-
strategy:
16-
matrix:
17-
distro: [ "ubuntu", "fedora", "archlinux" ]
15+
container:
16+
image: quay.io/fedora/fedora:latest
1817
steps:
1918
- name: Checkout
2019
uses: actions/checkout@v4
2120
- name: Install dependencies
22-
run: sudo apt-get update && sudo apt-get install -yq python3
23-
- name: Build and Test
24-
run: scripts/docker/docker_travis.sh "${{ matrix.distro }}_latest.docker"
21+
run: |
22+
dnf install -y boost-devel gcc gcc-c++ clang llvm lcov curl \
23+
boost-devel cmake make ninja-build bullet-devel ffmpeg-free-devel \
24+
glm-devel openal-soft-devel SDL2-devel qt5-qtbase-devel \
25+
freetype-devel libasan
26+
- name: Build and test
27+
run: ctest -VV -S cmake/ctest/script_ci.ctest

0 commit comments

Comments
 (0)