📝 update ci
This commit is contained in:
parent
ba6f48c991
commit
ad87298737
|
@ -14,12 +14,17 @@ jobs:
|
||||||
runs-on: macos-latest
|
runs-on: macos-latest
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v4
|
- uses: actions/checkout@v4
|
||||||
|
- name: Update Tag
|
||||||
|
run: |
|
||||||
|
git fetch --tags origin
|
||||||
|
git tag -f next_macOS
|
||||||
|
git push -f origin next_macOS
|
||||||
- name: Build
|
- name: Build
|
||||||
run: |
|
run: |
|
||||||
make -j4
|
make -j4
|
||||||
cd module
|
cd module
|
||||||
make all -j4
|
make all -j4
|
||||||
cd ..
|
cd ..
|
||||||
- name: Test
|
- name: Test
|
||||||
run: make test
|
run: make test
|
||||||
- name: Package
|
- name: Package
|
||||||
|
@ -30,6 +35,7 @@ jobs:
|
||||||
name: macOS nightly build
|
name: macOS nightly build
|
||||||
tag_name: next_macOS
|
tag_name: next_macOS
|
||||||
prerelease: true
|
prerelease: true
|
||||||
|
draft: false
|
||||||
files: |
|
files: |
|
||||||
nasal-Darwin.tar
|
nasal-Darwin.tar
|
||||||
|
|
||||||
|
@ -37,12 +43,17 @@ jobs:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v4
|
- uses: actions/checkout@v4
|
||||||
|
- name: Update Tag
|
||||||
|
run: |
|
||||||
|
git fetch --tags origin
|
||||||
|
git tag -f next_linux_x86_64
|
||||||
|
git push -f origin next_linux_x86_64
|
||||||
- name: Build
|
- name: Build
|
||||||
run: |
|
run: |
|
||||||
make -j4
|
make -j4
|
||||||
cd module
|
cd module
|
||||||
make all -j4
|
make all -j4
|
||||||
cd ..
|
cd ..
|
||||||
- name: Test
|
- name: Test
|
||||||
run: make test
|
run: make test
|
||||||
- name: Package
|
- name: Package
|
||||||
|
@ -53,5 +64,6 @@ jobs:
|
||||||
name: linux nightly build
|
name: linux nightly build
|
||||||
tag_name: next_linux_x86_64
|
tag_name: next_linux_x86_64
|
||||||
prerelease: true
|
prerelease: true
|
||||||
|
draft: false
|
||||||
files: |
|
files: |
|
||||||
nasal-Linux.tar
|
nasal-Linux.tar
|
||||||
|
|
Loading…
Reference in New Issue