Skip to content
Merged
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
22 changes: 14 additions & 8 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@ env:
CARGO_TERM_COLOR: always
RUST_BACKTRACE: 1
RUST_LOG: info
# https://github.com/Prior99/libsamplerate-sys/issues/21:
CMAKE_POLICY_VERSION_MINIMUM: 3.5
jobs:

Linux:
Expand Down Expand Up @@ -217,12 +219,22 @@ jobs:
cargo cinstall --verbose

deken-package:
# The deken package seems to be missing on 22.04:
runs-on: ubuntu-20.04
runs-on: ubuntu-latest
container: registry.git.iem.at/pd/deken
needs: [Linux, macOS, Windows-MSYS2]
steps:
- name: Install Git
run: |
apt-get update
apt-get install --assume-yes --no-install-recommends git
- name: Clone Git repository
uses: actions/checkout@v4
with:
# check out all tags to get proper version in Deken package
fetch-depth: 0
- name: git clone fix
# https://github.com/actions/checkout/issues/1169:
run: git config --system --add safe.directory $GITHUB_WORKSPACE
- name: Retrieve Linux external
uses: actions/download-artifact@v4
with:
Expand All @@ -241,12 +253,6 @@ jobs:
- name: Copy help patch and source file
run: |
cp pure-data/asdf~* asdf
- name: Install deken
run: |
sudo apt-get install --no-install-recommends deken
# work-arounds from https://github.com/pure-data/deken/issues/247:
mkdir ~/.deken
python3 -m pip install hy==0.19
- name: Run deken
run: |
deken package -v $(git describe --tags --always) --objects pure-data/objects.txt asdf
Expand Down