-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Corentin Labbe <[email protected]>
- Loading branch information
Showing
3 changed files
with
58 additions
and
1 deletion.
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 |
---|---|---|
@@ -0,0 +1,35 @@ | ||
--- | ||
# yamllint disable rule:line-length | ||
name: tests yasat | ||
|
||
on: # yamllint disable-line rule:truthy | ||
push: | ||
pull_request: | ||
|
||
jobs: | ||
test-ubuntu: | ||
runs-on: ubuntu-latest | ||
name: test on ubuntu | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: update pkglist | ||
run: sudo apt-get update | ||
- name: Run yasat | ||
run: | | ||
./yasat | ||
ubuntu-pkg: | ||
runs-on: ubuntu-latest | ||
name: build ubuntu package | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: update pkglist | ||
run: sudo apt-get update | ||
- name: Install packages | ||
run: sudo apt-get -y install devscripts gnupg debhelper-compat | ||
- name: create orig targz | ||
run: cd .. && tar czf yasqt_0-1.orig.tar.gz yasat | ||
- name: Run ls | ||
run: ls -l | ||
- name: Run debuild | ||
run: debuild -i -us -uc -b | ||
|
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