-
Notifications
You must be signed in to change notification settings - Fork 69
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'icymatter/ng' into ng
- Loading branch information
Showing
9 changed files
with
64 additions
and
7 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -95,3 +95,18 @@ jobs: | |
export PATH="$(pwd -P):$PATH" | ||
cd tests/ | ||
make test_pkgng | ||
sun_tools: | ||
runs-on: macos-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Build pacapt and tests | ||
run: make pacapt.dev && mkdir -pv tests/tmp/ && cd tests && ruby -n ../bin/gen_tests.rb < sun_tools.txt > tmp/sun_tools.sh | ||
- uses: vmactions/[email protected] | ||
with: | ||
run: | | ||
set -x | ||
ln -s pacapt.dev pacman | ||
export PATH="$(pwd -P):$PATH" | ||
cd tests/ | ||
make test_sun_tools |
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
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
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
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
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
#!/bin/sh | ||
|
||
# Purpose : Testing script for sun_tools support | ||
# Author : Álvaro Mondéjar | ||
# License : MIT | ||
|
||
# NOTE: Must be executed in a Solaris (SunOS) distribution | ||
|
||
im solaris | ||
|
||
# Get packages information | ||
in -Qi | ||
ou PKGINST:\s+CSWpkgutil | ||
ou PKGINST:\s+BRCMbnx | ||
|
||
# Get locally installed package | ||
in -Qs pkgutil | ||
ou ^application CSWpkgutil | ||
|
||
# Get installed packages | ||
in -Q | ||
ou ^application CSWpkgutil | ||
|
||
in -Q CSWpkgutil | ||
ou ^application CSWpkgutil pkgutil | ||
|
||
in -Qq | ||
ou ^application CSWpkgutil | ||
|
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