Skip to content

Commit

Permalink
fix noble build
Browse files Browse the repository at this point in the history
  • Loading branch information
raphaelscholle committed May 20, 2024
1 parent 9550aa6 commit 2ad79ff
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 8 deletions.
10 changes: 3 additions & 7 deletions .github/workflows/build_package_x86_noble.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,18 +14,14 @@ env:
jobs:
build:
#runs-on: ubuntu-18.04
runs-on: ubuntu-22.04
container:
image: docker://ubuntu:noble
runs-on: ubuntu-24.04
env:
CLOUDSMITH_API_KEY: ${{ secrets.CLOUDSMITH_API_KEY }}
steps:
- name: test
run: |
echo "DT=$(date +'%Y-%m-%d_%H%M')" >> $GITHUB_ENV
echo "BRANCH=${GITHUB_REF##*/}" >> $GITHUB_ENV
apt update
apt install -y git sudo
- name: clone QOpenHD
run: |
Expand All @@ -35,7 +31,7 @@ jobs:
run: |
ls
cd QOpenHD
apt install -y python3-pip
sudo apt install -y python3-pip
pip install cloudsmith-api --break-system-packages
pip install cloudsmith-cli --break-system-packages
sudo -H ./install_build_dep.sh ubuntu-x86
Expand Down Expand Up @@ -71,7 +67,7 @@ jobs:
# if: ${{ github.ref != 'refs/heads/2.5-evo' }}

- name: Push
if: github.ref_name == 'release' || github.ref_name == 'dev-release'
run: |
if: github.ref_name == 'release' || github.ref_name == 'dev-release'
ls -a
cloudsmith push deb -k ${{ secrets.CLOUDSMITH_API_KEY }} openhd/${{ github.ref_name }}/ubuntu/noble QOpenHD/*.deb
2 changes: 1 addition & 1 deletion package.sh
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ elif [[ "${PACKAGE_ARCH}" = "arm64" ]]; then
cp rock_qt_eglfs_kms_config.json /tmp/qopenhd/usr/local/share/qopenhd/ || exit 1
fi

VERSION="2.5.4-beta-$(date -d '+1 hour' +'%m-%d-%Y--%H-%M-%S')-${VER2}"
VERSION="2.5.4-rc-$(date -d '+1 hour' +'%m-%d-%Y--%H-%M-%S')-${VER2}"

ls -a ${TMPDIR}/usr/local/bin
echo "going into packaging stage"
Expand Down

0 comments on commit 2ad79ff

Please sign in to comment.