Skip to content

Commit

Permalink
Fix build for now
Browse files Browse the repository at this point in the history
  • Loading branch information
Eeems committed Dec 23, 2023
1 parent 9a3dac3 commit a6df6b0
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 10 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ on:
jobs:
test-basic:
name: Test basic
runs-on: ubuntu-latest
runs-on: ubuntu-20.04
steps:
- name: Checkout the Git repository
uses: actions/checkout@v4
Expand All @@ -26,7 +26,7 @@ jobs:
[ -f dist/rm2/bar_0.0.0-1_rmall.ipk ]
test-path:
name: Test path
runs-on: ubuntu-latest
runs-on: ubuntu-20.04
steps:
- name: Checkout the Git repository
uses: actions/checkout@v4
Expand All @@ -48,7 +48,7 @@ jobs:
[ -f dist/rm2/bar_0.0.0-1_rmall.ipk ]
test-vebose:
name: Test verbose
runs-on: ubuntu-latest
runs-on: ubuntu-20.04
steps:
- name: Checkout the Git repository
uses: actions/checkout@v4
Expand All @@ -65,7 +65,7 @@ jobs:
[ -f dist/rm2/bar_0.0.0-1_rmall.ipk ]
test-arch:
name: Test arch
runs-on: ubuntu-latest
runs-on: ubuntu-20.04
steps:
- name: Checkout the Git repository
uses: actions/checkout@v4
Expand All @@ -82,7 +82,7 @@ jobs:
! [ -f dist/rm2/bar_0.0.0-1_rmall.ipk ]
test-package:
name: Test package
runs-on: ubuntu-latest
runs-on: ubuntu-20.04
steps:
- name: Checkout the Git repository
uses: actions/checkout@v4
Expand All @@ -99,7 +99,7 @@ jobs:
! [ -f dist/rm2/bar_0.0.0-1_rmall.ipk ]
test-warnings:
name: Test warnings
runs-on: ubuntu-latest
runs-on: ubuntu-20.04
steps:
- name: Checkout the Git repository
uses: actions/checkout@v4
Expand Down
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
dist/
build/
15 changes: 11 additions & 4 deletions package
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@

archs=(rm1 rm2 rmall)
pkgnames=(foo bar)
pkgdesc="Example package"
url=https://toltec-dev.org/
pkgver=0.0.0-1
timestamp=2023-12-23T20:46:51Z
Expand All @@ -15,12 +14,20 @@ image=base:v3.1
source=()
sha256sums=()

build() { true }
build() {
true
}

foo() {
package() { true }
pkgdesc="Foo"
package() {
true
}
}
bar() {
package() { true }
pkgdesc="Bar"
package() {
true
}
}

0 comments on commit a6df6b0

Please sign in to comment.