Skip to content

Commit

Permalink
drop script
Browse files Browse the repository at this point in the history
  • Loading branch information
Lihis committed Jan 7, 2025
1 parent 66fbb42 commit 6245a06
Showing 1 changed file with 11 additions and 8 deletions.
19 changes: 11 additions & 8 deletions .github/workflows/build-and-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,23 +2,26 @@ name: Build and Test

on:
push:
branches: [ "master", "migrate-ci" ]
branches: [ "main", "migrate-ci" ]
pull_request:
branches: [ "master" ]
branches: [ "main" ]

env:
BUILD_TYPE: Release

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

0 comments on commit 6245a06

Please sign in to comment.