Skip to content

Commit

Permalink
ci: is tar really the best we can do??
Browse files Browse the repository at this point in the history
  • Loading branch information
tihmstar committed Aug 1, 2024
1 parent b67e596 commit e1ee22f
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
runs-on: ${{ matrix.platform }}
env:
BUILDROOT: "buildroot_${{ matrix.platform }}"
GIT_DEPENDENCIES: libfragmentzip,libgeneral,libirecovery,libplist
GIT_DEPENDENCIES: libfragmentzip,libgeneral,libimobiledevice-glue,libirecovery,libplist

steps:
- uses: actions/checkout@v4
Expand All @@ -21,7 +21,7 @@ jobs:
run: |
if [ "$RUNNER_OS" == "Linux" ]; then
sudo apt-get update
sudo apt-get install -y jq libssl-dev libcurl4-openssl-dev libzip-dev
sudo apt-get install -y jq libssl-dev libcurl4-openssl-dev libzip-dev libusb-1.0-0-dev
elif [ "$RUNNER_OS" == "macOS" ]; then
brew install autoconf automake libtool jq pkg-config
Expand Down Expand Up @@ -58,7 +58,10 @@ jobs:
rm "$BUILDROOT.zip"
done
echo "moving dependencies to /"
sudo cp -a $BUILDROOT/* /
(
cd $BUILDROOT
tar -cpv . | sudo tar -xkpvC /
)
cd ..
rm -rf depdir
- name: prepre submodule
Expand Down

0 comments on commit e1ee22f

Please sign in to comment.