Skip to content

Commit

Permalink
Added 24.04 workflow file
Browse files Browse the repository at this point in the history
  • Loading branch information
ghorwin committed Oct 23, 2024
1 parent d95c3d6 commit 69183a8
Show file tree
Hide file tree
Showing 2 changed files with 34 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/ubuntu_22.04_Build.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Ubuntu 22.04 build
name: Ubuntu 22.04/5.15.3 build

on:
# run nightly at 2:00 am
Expand All @@ -25,6 +25,6 @@ jobs:
- name: build
working-directory: build/cmake
run: ./build.sh 2 release skip-test
- name: test
working-directory: build/cmake
run: ./run_tests.sh
# - name: test
# working-directory: build/cmake
# run: ./run_tests.sh
30 changes: 30 additions & 0 deletions .github/workflows/ubuntu_24.04_Build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
name: Ubuntu 24.04/Qt 5.15 build

on:
# run nightly at 2:00 am
# schedule:
# - cron: "0 2 * * *"
# allow to be triggered on github webpage manually
workflow_dispatch:
# run whenever someone pushes data
# as we do not have much development, this will not cause much traffic/build times
# push:
# branches: [ "master" ]
# pull_request:
# branches: [ "master" ]

jobs:
build:

# Test suite results are created on Ubuntu 20.04, hence we need to use this for testing
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
- name: install qt5
run: sudo apt install qtbase5-dev qt5-qmake libqt5svg5-dev libqt5sql5 libqt5sql5-psql
- name: build
working-directory: build/cmake
run: ./build.sh 2 release skip-test
# - name: test
# working-directory: build/cmake
# run: ./run_tests.sh

0 comments on commit 69183a8

Please sign in to comment.