Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
File renamed without changes.
Original file line number Diff line number Diff line change
@@ -1,12 +1,14 @@
# This one was created to make it work whil

name: manual-nightly-ok

on:
workflow_dispatch:
inputs:
release:
description: 'release'
required: true
default: 'nightly'
release:
description: 'release'
required: true
default: 'latest'

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
Expand Down
59 changes: 59 additions & 0 deletions .github/workflows/nightly-ok.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,59 @@
name: nightly-linux64

on:
schedule:
- cron: "0 6 * * *"
workflow_dispatch:
inputs:
release:
description: 'release'
required: true
default: 'latest'
env:
ccache: ccache

jobs:
build-nightly-ok:
runs-on: ubuntu-24.04
if: github.repository == 'openframeworks/openFrameworks' && github.ref == 'refs/heads/master'
strategy:
matrix:
cfg:
- {target: linux64, libs: 64gcc6}
env:
TARGET: ${{matrix.cfg.target}}
steps:
- name: Install libunwind
run: sudo apt-get install libunwind-dev
- name: Cache Packages
uses: awalsh128/cache-apt-pkgs-action@latest
with:
packages: aptitude aptitude-common libboost-iostreams1.83.0 libcwidget4 libsigc++-2.0-0v5 libxapian30 fonts-wine{a} libasound2-plugins{a} libcapi20-3t64{a} libosmesa6{a} libpcsclite1{a} libspeexdsp1{a} libwine{a} libxkbregistry0{a} libz-mingw-w64{a} wine{a} wine64 make curl libjack-jackd2-0 libjack-jackd2-dev freeglut3-dev libasound2-dev libxmu-dev libxxf86vm-dev g++ libgl1-mesa-dev libglu1-mesa-dev libraw1394-dev libudev-dev libdrm-dev libglew-dev libopenal-dev libsndfile1-dev libfreeimage-dev libcairo2-dev libfreetype6-dev libssl-dev libpulse-dev libusb-1.0-0-dev libgtk2.0-dev libopencv-dev libassimp-dev librtaudio-dev gdb libglfw3-dev liburiparser-dev libcurl4-openssl-dev libpugixml-dev libgconf-2-4 libgtk2.0-0 libpoco-dev libxcursor-dev libxi-dev libxinerama-dev libgstreamer1.0-dev libgstreamer-plugins-base1.0-dev gstreamer1.0-libav gstreamer1.0-pulseaudio gstreamer1.0-x gstreamer1.0-plugins-bad gstreamer1.0-alsa gstreamer1.0-plugins-base gstreamer1.0-plugins-good
# libunwind-dev wget2
version: 1.0

- uses: actions/checkout@v4
- name: ccache
uses: hendrikmuhs/[email protected]
with:
key: ${{ matrix.cfg.target }}
- name: Install dependencies
run: ./scripts/ci/$TARGET/install.sh;
- name: update submodules
run: ./scripts/dev/init_submodules.sh
- name: Download libs
run: ./scripts/linux/download_libs.sh -a ${{matrix.cfg.libs}};
- name: Create Package
run: scripts/ci/package_builds.sh ${{ github.event.inputs.release }};
id: createpackage
- name: List output directory
run: ls -lah out/
- name: Update Release
uses: IsaacShelton/[email protected]
with:
token: ${{ secrets.GITHUB_TOKEN }}
tag: nightly
release: nightly
prerelease: false
replace: true
files: ${{ steps.createpackage.outputs.FILES_OUT }}
25 changes: 13 additions & 12 deletions .github/workflows/of.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,16 +18,17 @@ concurrency:

env:
ccache: ccache
RELEASE: latest

jobs:
build-emscripten:
runs-on: ubuntu-24.04
strategy:
matrix:
cfg:
- {target: emscripten}
matrix:
cfg:
- {target: emscripten}
env:
TARGET: ${{matrix.cfg.target}}
TARGET: ${{matrix.cfg.target}}
steps:
- uses: actions/checkout@v4
- name: Docker Step
Expand Down Expand Up @@ -166,9 +167,9 @@ jobs:
- { libs: armv7l, multistrap_arch: armhf, suffix: arm-linux-gnueabihf, alladdons: 1 }
- { libs: aarch64, multistrap_arch: arm64, suffix: aarch64-linux-gnu, alladdons: 1 }
env:
ARCH: ${{matrix.cfg.libs}}
MULTISTRAP_ARCH: ${{matrix.cfg.multistrap_arch}}
ALLADDONSEXAMPLE: ${{matrix.cfg.alladdons}}
ARCH: ${{matrix.cfg.libs}}
MULTISTRAP_ARCH: ${{matrix.cfg.multistrap_arch}}
ALLADDONSEXAMPLE: ${{matrix.cfg.alladdons}}
steps:
- name: Cache Packages
uses: awalsh128/cache-apt-pkgs-action@latest
Expand Down Expand Up @@ -204,14 +205,14 @@ jobs:
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

build-ios-tvos:
runs-on: macos-14
runs-on: macos-15
strategy:
matrix:
cfg:
- {target: ios, libs: macos}
- {target: tvos, libs: macos}
env:
TARGET: ${{matrix.cfg.target}}
TARGET: ${{matrix.cfg.target}}
steps:
- uses: actions/checkout@v4
- name: ccache
Expand Down Expand Up @@ -251,7 +252,7 @@ jobs:
cfg:
- {target: linux64, libs: 64gcc6}
env:
TARGET: ${{matrix.cfg.target}}
TARGET: ${{matrix.cfg.target}}
steps:
- name: Remove Old lib-unwind
run: if [ "$TARGET" = "linux64" ]; then
Expand Down Expand Up @@ -303,7 +304,7 @@ jobs:
# cfg:
# - {target: linux64, libs: 64gcc6}
# env:
# TARGET: ${{matrix.cfg.target}}
# TARGET: ${{matrix.cfg.target}}
# steps:
# - name: Remove Old lib-unwind
# run: if [ "$TARGET" = "linux64" ]; then
Expand Down Expand Up @@ -336,7 +337,7 @@ jobs:
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

build-macos:
runs-on: macos-14
runs-on: macos-15
strategy:
matrix:
cfg:
Expand Down