NXTTabView: trancate tab titles if it's allowed #77
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Fedora 39 | |
on: | |
push: | |
branches: [ "master" ] | |
pull_request: | |
branches: [ "master" ] | |
jobs: | |
build: | |
runs-on: ubuntu-22.04 | |
container: amd64/fedora:39 | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Install build tools | |
run: dnf -y install sudo git openssh-clients which binutils clang | |
- name: Build and install Libraries | |
run: | | |
cd Packaging/RedHat | |
./0.build_libraries.sh | |
- name: Build and install Frameworks | |
run: | | |
cd Packaging/RedHat | |
./1.build_frameworks.sh | |
- name: Build and install Applications | |
run: | | |
cd Packaging/RedHat | |
./2.build_applications.sh |