optimized #292
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: NetBSD | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
jobs: | |
test: | |
runs-on: macos-12 | |
strategy: | |
fail-fast: false | |
matrix: | |
version: [9] | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/cache@v3 | |
with: | |
path: ~/.vagrant.d/boxes | |
key: vagrant-generic-netbsd-${{ matrix.version }} | |
restore-keys: | | |
vagrant-generic-netbsd-${{ matrix.version }} | |
- uses: leleliu008/github-actions-vagrant@main | |
with: | |
mem: 2048 | |
box: generic/netbsd${{ matrix.version }} | |
run: | | |
run sudo sed -i 's/#ETCCERTSDIR=/ETCCERTSDIR=/' /usr/pkg/etc/ca-certificates-dir.conf | |
run sudo update-ca-certificates | |
run sudo pkgin -y update | |
run sudo pkgin -y install llvm | |
run ./ppkg --help | |
run ./ppkg --version | |
run ./ppkg setup | |
run ./ppkg env | |
run ./ppkg integrate zsh | |
run ./ppkg update | |
run ./ppkg search lib | |
run ./ppkg search libzip | |
run ./ppkg info libzip | |
run ./ppkg info libzip summary | |
run ./ppkg info libzip webpage | |
run ./ppkg info libzip version | |
run ./ppkg depends libzip | |
run ./ppkg install libzip | |
run ./ppkg tree libzip | |
run ./ppkg pack libzip -t tar.xz | |
run ./ppkg formula-repo-list | |
run ./ppkg ls-available | |
run ./ppkg ls-installed | |
run ./ppkg ls-outdated | |
run ./ppkg is-available libzip | |
run ./ppkg is-installed libzip | |
run ./ppkg is-outdated libzip || echo "not outdated" | |
run ./ppkg uninstall libzip | |
run ./ppkg fetch curl | |
run ./ppkg upgrade-self |