optimized #644
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Ubuntu | |
on: | |
push: | |
branches: [ c ] | |
pull_request: | |
branches: [ c ] | |
jobs: | |
test: | |
env: | |
DEBIAN_FRONTEND: noninteractive | |
TZ: Asia/Shanghai | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
version: [20.04, 22.04] | |
container: ubuntu:${{ matrix.version }} | |
steps: | |
- uses: actions/checkout@main | |
- run: apt -y update | |
- run: apt -y install cmake ninja-build pkg-config g++ linux-headers-generic curl zip unzip tar git | |
- uses: actions/checkout@v3 | |
- uses: actions/checkout@v3 | |
with: | |
repository: microsoft/vcpkg | |
path: vcpkg | |
- run: cd vcpkg && ./bootstrap-vcpkg.sh | |
- run: cd vcpkg && ./vcpkg install curl openssl libgit2 libarchive libyaml jansson zlib | |
- run: | | |
cmake \ | |
-S . \ | |
-B build.d \ | |
-G Ninja \ | |
-DCMAKE_TOOLCHAIN_FILE=$PWD/vcpkg/scripts/buildsystems/vcpkg.cmake \ | |
-DCMAKE_INSTALL_PREFIX=./output \ | |
-DCMAKE_VERBOSE_MAKEFILE=ON | |
- run: cmake --build build.d | |
- run: cmake --install build.d | |
- run: ./output/bin/ppkg | |
- run: ./output/bin/ppkg --help | |
- run: ./output/bin/ppkg -h | |
- run: ./output/bin/ppkg --version | |
- run: ./output/bin/ppkg -V | |
- run: ./output/bin/ppkg setup -v | |
- run: ./output/bin/ppkg env | |
- run: ./output/bin/ppkg env -v | |
- run: ./output/bin/ppkg integrate zsh | |
- run: ./output/bin/ppkg integrate zsh -v | |
- run: ./output/bin/ppkg update | |
- run: ./output/bin/ppkg search lib | |
- run: ./output/bin/ppkg search zip | |
- run: ./output/bin/ppkg info-available libzip | |
- run: ./output/bin/ppkg info-available libzip --yaml | |
- run: ./output/bin/ppkg info-available libzip --json | |
- run: ./output/bin/ppkg info-available libzip summary | |
- run: ./output/bin/ppkg info-available libzip version | |
- run: ./output/bin/ppkg info-available libzip license | |
- run: ./output/bin/ppkg info-available libzip web-url | |
- run: ./output/bin/ppkg info-available libzip src-url | |
- run: ./output/bin/ppkg info-available libzip src-sha | |
- run: ./output/bin/ppkg depends libzip | |
- run: ./output/bin/ppkg depends libzip -t dot | |
- run: ./output/bin/ppkg depends libzip -t box | |
- run: ./output/bin/ppkg fetch gzip | |
- run: ./output/bin/ppkg fetch gsed -v | |
- run: apt -y install g++ linux-headers-generic | |
- run: ./output/bin/ppkg install libzip | |
- run: ./output/bin/ppkg install sd | |
- run: ./output/bin/ppkg install gh | |
- run: ./output/bin/ppkg tree libzip | |
- run: ./output/bin/ppkg info-installed libzip --prefix | |
- run: ./output/bin/ppkg info-installed libzip --files | |
- run: ./output/bin/ppkg info-installed libzip --json | |
- run: ./output/bin/ppkg info-installed libzip --yaml | |
- run: ./output/bin/ppkg info-installed libzip builtat | |
- run: ./output/bin/ppkg info-installed libzip builtat-iso-8601 | |
- run: ./output/bin/ppkg info-installed libzip builtat-rfc-3339 | |
- run: ./output/bin/ppkg info-installed libzip version | |
- run: ./output/bin/ppkg pack libzip | |
- run: ./output/bin/ppkg pack libzip -t tar.gz | |
- run: ./output/bin/ppkg pack libzip -t tar.lz | |
- run: ./output/bin/ppkg pack libzip -t tar.xz | |
- run: ./output/bin/ppkg pack libzip -t tar.bz2 | |
- run: ./output/bin/ppkg pack libzip -t zip | |
- run: | | |
printf '%s\n' 'version: 1000' >> ~/.ppkg/repos.d/official-core/formula/libzip.yml | |
- run: ./output/bin/ppkg ls-available | |
- run: ./output/bin/ppkg ls-installed | |
- run: ./output/bin/ppkg ls-outdated | |
- run: ./output/bin/ppkg is-available libzip | |
- run: ./output/bin/ppkg is-installed libzip | |
- run: ./output/bin/ppkg is-outdated libzip | |
- run: ./output/bin/ppkg upgrade libzip | |
- run: ./output/bin/ppkg reinstall libzip | |
- run: ./output/bin/ppkg uninstall libzip | |
- run: ./output/bin/ppkg formula-repo-list | |
- run: ./output/bin/ppkg formula-repo-add my_repo https://github.com/leleliu008/ppkg-formula-repository-official-core | |
- run: ./output/bin/ppkg formula-repo-list | |
- run: ./output/bin/ppkg formula-repo-del my_repo | |
- run: ./output/bin/ppkg cleanup | |
#- run: ./output/bin/ppkg upgrade-self |