feat: Remove prebuilt mpr, trying to install just in ci

This commit is contained in:
2025-01-26 09:45:05 -05:00
parent 862a978148
commit 59084b6da0

View File

@@ -4,16 +4,16 @@ description: "Sets up 'casey/just' inside a workflow"
runs: runs:
using: "composite" using: "composite"
steps: steps:
- name: Setup MPR # - name: Setup MPR
shell: bash # shell: bash
run: | # run: |
wget -qO - 'https://proget.makedeb.org/debian-feeds/prebuilt-mpr.pub' \ # wget -qO - 'https://proget.makedeb.org/debian-feeds/prebuilt-mpr.pub' \
| gpg --dearmor \ # | gpg --dearmor \
| sudo tee /usr/share/keyrings/prebuilt-mpr-archive-keyring.gpg 1> /dev/null \ # | sudo tee /usr/share/keyrings/prebuilt-mpr-archive-keyring.gpg 1> /dev/null \
&& echo "deb [arch=all,$(dpkg --print-architecture) signed-by=/usr/share/keyrings/prebuilt-mpr-archive-keyring.gpg] \ # && echo "deb [arch=all,$(dpkg --print-architecture) signed-by=/usr/share/keyrings/prebuilt-mpr-archive-keyring.gpg] \
https://proget.makedeb.org prebuilt-mpr $(lsb_release -cs)" \ # https://proget.makedeb.org prebuilt-mpr $(lsb_release -cs)" \
| sudo tee /etc/apt/sources.list.d/prebuilt-mpr.list \ # | sudo tee /etc/apt/sources.list.d/prebuilt-mpr.list \
&& sudo apt update --allow-insecure-repositories # && sudo apt update --allow-insecure-repositories
- name: Setup just. - name: Setup just.
shell: bash shell: bash
run: sudo apt install -y just run: sudo apt update && apt install -y just