Skip to content

Commit 2dc7b80

Browse files
committed
optimized
1 parent 08bbfce commit 2dc7b80

File tree

6 files changed

+14
-19
lines changed

6 files changed

+14
-19
lines changed

.github/workflows/centos.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -22,13 +22,12 @@ jobs:
2222
dnf -y update
2323
dnf -y install curl xz gcc-c++
2424
25-
- uses: actions/checkout@main
26-
2725
- name: create ppkg formula for uppm package
2826
run: |
2927
tee uppm.yml <<EOF
3028
summary: Universal Prebuild Package Manager
31-
src-url: dir://$PWD
29+
git-url: https://github.com/leleliu008/uppm
30+
git-sha: ${{ github.sha }}
3231
license: Apache-2.0
3332
dep-pkg: libcurl libgit2 libarchive libyaml libjansson
3433
install: cmakew -DLINK_STATIC_LIBS=ON
@@ -136,7 +135,8 @@ jobs:
136135
run: |
137136
tee uppm.yml <<EOF
138137
summary: Universal Prebuild Package Manager
139-
src-url: dir://$PWD
138+
git-url: https://github.com/leleliu008/uppm
139+
git-sha: ${{ github.sha }}
140140
license: Apache-2.0
141141
dep-pkg: libcurl libgit2 libarchive libyaml libjansson
142142
install: cmakew -DLINK_STATIC_LIBS=ON

.github/workflows/debian.yml

+2-3
Original file line numberDiff line numberDiff line change
@@ -22,13 +22,12 @@ jobs:
2222
- run: apt -y update
2323
- run: apt -y install curl g++ xz-utils
2424

25-
- uses: actions/checkout@main
26-
2725
- name: create ppkg formula for uppm package
2826
run: |
2927
tee uppm.yml <<EOF
3028
summary: Universal Prebuild Package Manager
31-
src-url: dir://$PWD
29+
git-url: https://github.com/leleliu008/uppm
30+
git-sha: ${{ github.sha }}
3231
license: Apache-2.0
3332
dep-pkg: libcurl libgit2 libarchive libyaml libjansson
3433
install: cmakew -DLINK_STATIC_LIBS=ON

.github/workflows/linuxmint.yml

+2-3
Original file line numberDiff line numberDiff line change
@@ -22,13 +22,12 @@ jobs:
2222
- run: sudo apt -y update
2323
- run: sudo apt -y install curl xz-utils g++
2424

25-
- uses: actions/checkout@main
26-
2725
- name: create ppkg formula for uppm package
2826
run: |
2927
tee uppm.yml <<EOF
3028
summary: Universal Prebuild Package Manager
31-
src-url: dir://$PWD
29+
git-url: https://github.com/leleliu008/uppm
30+
git-sha: ${{ github.sha }}
3231
license: Apache-2.0
3332
dep-pkg: libcurl libgit2 libarchive libyaml libjansson
3433
install: cmakew -DLINK_STATIC_LIBS=ON

.github/workflows/macos-ppkg.yml

+2-3
Original file line numberDiff line numberDiff line change
@@ -17,13 +17,12 @@ jobs:
1717
runs-on: ${{ matrix.os }}
1818

1919
steps:
20-
- uses: actions/checkout@main
21-
2220
- name: create ppkg formula for uppm package
2321
run: |
2422
tee uppm.yml <<EOF
2523
summary: Universal Prebuild Package Manager
26-
src-url: dir://$PWD
24+
git-url: https://github.com/leleliu008/uppm
25+
git-sha: ${{ github.sha }}
2726
license: Apache-2.0
2827
dep-pkg: libcurl libgit2 libarchive libyaml libjansson
2928
install: cmakew -DLINK_STATIC_LIBS=ON

.github/workflows/rockylinux.yml

+2-3
Original file line numberDiff line numberDiff line change
@@ -24,13 +24,12 @@ jobs:
2424
command -v curl > /dev/null || dnf -y install curl
2525
# https://bugs.launchpad.net/tripleo/+bug/1953156
2626
27-
- uses: actions/checkout@main
28-
2927
- name: create ppkg formula for uppm package
3028
run: |
3129
tee uppm.yml <<EOF
3230
summary: Universal Prebuild Package Manager
33-
src-url: dir://$PWD
31+
git-url: https://github.com/leleliu008/uppm
32+
git-sha: ${{ github.sha }}
3433
license: Apache-2.0
3534
dep-pkg: libcurl libgit2 libarchive libyaml libjansson
3635
install: cmakew -DLINK_STATIC_LIBS=ON

.github/workflows/ubuntu-ppkg.yml

+2-3
Original file line numberDiff line numberDiff line change
@@ -17,13 +17,12 @@ jobs:
1717
runs-on: ${{ matrix.os }}
1818

1919
steps:
20-
- uses: actions/checkout@main
21-
2220
- name: create ppkg formula for uppm package
2321
run: |
2422
tee uppm.yml <<EOF
2523
summary: Universal Prebuild Package Manager
26-
src-url: dir://$PWD
24+
git-url: https://github.com/leleliu008/uppm
25+
git-sha: ${{ github.sha }}
2726
license: Apache-2.0
2827
dep-pkg: libcurl libgit2 libarchive libyaml libjansson
2928
install: cmakew -DLINK_STATIC_LIBS=ON

0 commit comments

Comments
 (0)