diff options
author | Ondřej Čertík <ondrej@certik.us> | 2020-07-23 10:08:40 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-07-23 10:08:40 -0600 |
commit | f80924c65f9e73ca76e5f6c32699ea378d4ee62b (patch) | |
tree | 4b60e941106e4b085e30b833b13dd9ef78222753 /ci | |
parent | 6ef25462797940d7b8323551545a4726e1c90b1b (diff) | |
parent | aa159e95768b189694bda621cf1f115da293d9cf (diff) | |
download | fpm-f80924c65f9e73ca76e5f6c32699ea378d4ee62b.tar.gz fpm-f80924c65f9e73ca76e5f6c32699ea378d4ee62b.zip |
Merge pull request #147 from certik/ci
Execute the newly built fpm
Diffstat (limited to 'ci')
-rwxr-xr-x | ci/run_tests.bat | 3 | ||||
-rwxr-xr-x | ci/run_tests.sh | 1 |
2 files changed, 4 insertions, 0 deletions
diff --git a/ci/run_tests.bat b/ci/run_tests.bat index dcc9a8a..fc4e1f5 100755 --- a/ci/run_tests.bat +++ b/ci/run_tests.bat @@ -12,6 +12,9 @@ if errorlevel 1 exit 1 fpm run --args build if errorlevel 1 exit 1 +.\fpm +if errorlevel 1 exit 1 + cd ..\test\example_packages\hello_world if errorlevel 1 exit 1 diff --git a/ci/run_tests.sh b/ci/run_tests.sh index 8f99a2c..e8a37e6 100755 --- a/ci/run_tests.sh +++ b/ci/run_tests.sh @@ -6,6 +6,7 @@ cd fpm fpm build fpm run fpm run --args build +./fpm cd ../test/example_packages/hello_world ../../../fpm/fpm build ./hello_world |