Skip to content

Commit

Permalink
Create build_and_test_ubuntu24.04
Browse files Browse the repository at this point in the history
  • Loading branch information
dmronga authored Dec 3, 2024
1 parent 4ec889e commit 5a3f648
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/build_and_test_ubuntu24.04
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: Ubuntu 24.04

on:
push:
branches: [ master, ubuntu24.04 ]
pull_request:
branches: [ master, ubuntu24.04 ]

jobs:
build_and_test_24_04:
runs-on: ubuntu-24.04

steps:
# Check out repository under $GITHUB_WORKSPACE
- uses: actions/checkout@v2
ref: ubuntu24.04
# Build and install
- name: install
run: sh scripts/full_install.sh
# Run all tests
- name: test
run: |
export LD_LIBRARY_PATH=/usr/local/lib
export PYTHONPATH=/usr/local/lib/python3.10/site-packages
cd wbc/build
make test

0 comments on commit 5a3f648

Please sign in to comment.