📝 adjust ci
This commit is contained in:
parent
250667268a
commit
ba6f48c991
|
@ -14,35 +14,22 @@ jobs:
|
||||||
runs-on: macos-latest
|
runs-on: macos-latest
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v4
|
- uses: actions/checkout@v4
|
||||||
- name: make
|
- 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
|
||||||
run: python3 tools/pack.py
|
run: python3 tools/pack.py
|
||||||
# - name: Release file
|
|
||||||
# # You may pin to the exact commit or the version.
|
|
||||||
# # uses: djnicholson/release-action@e9a535b3eced09c460e07a84118fb74ae9b53236
|
|
||||||
# uses: ValKmjolnir/action-automatic-releases@v1
|
|
||||||
# with:
|
|
||||||
# # GitHub auth token
|
|
||||||
# repo_token: ${{ secrets.GITHUB_TOKEN }}
|
|
||||||
# # Name of Release to add file to
|
|
||||||
# title: macOS Nightly build
|
|
||||||
# # Name of the tag for the release (will be associated with current branch)
|
|
||||||
# automatic_release_tag: next_macOS
|
|
||||||
# # File to release
|
|
||||||
# files: |
|
|
||||||
# nasal-Darwin.tar
|
|
||||||
- name: Release
|
- name: Release
|
||||||
uses: softprops/action-gh-release@v2.0.5
|
uses: softprops/action-gh-release@v2.0.5
|
||||||
with:
|
with:
|
||||||
name: macOS nightly build
|
name: macOS nightly build
|
||||||
tag_name: next_macOS
|
tag_name: next_macOS
|
||||||
|
prerelease: true
|
||||||
files: |
|
files: |
|
||||||
nasal-Darwin.tar
|
nasal-Darwin.tar
|
||||||
|
|
||||||
|
@ -50,34 +37,21 @@ jobs:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v4
|
- uses: actions/checkout@v4
|
||||||
- name: make
|
- 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
|
||||||
run: python3 tools/pack.py
|
run: python3 tools/pack.py
|
||||||
# - name: Release file
|
|
||||||
# # You may pin to the exact commit or the version.
|
|
||||||
# # uses: djnicholson/release-action@e9a535b3eced09c460e07a84118fb74ae9b53236
|
|
||||||
# uses: ValKmjolnir/action-automatic-releases@v1
|
|
||||||
# with:
|
|
||||||
# # GitHub auth token
|
|
||||||
# repo_token: ${{ secrets.GITHUB_TOKEN }}
|
|
||||||
# # Name of Release to add file to
|
|
||||||
# title: Linux Nightly build
|
|
||||||
# # Name of the tag for the release (will be associated with current branch)
|
|
||||||
# automatic_release_tag: next_linux_x86_64
|
|
||||||
# # File to release
|
|
||||||
# files: |
|
|
||||||
# nasal-Linux.tar
|
|
||||||
- name: Release
|
- name: Release
|
||||||
uses: softprops/action-gh-release@v2.0.5
|
uses: softprops/action-gh-release@v2.0.5
|
||||||
with:
|
with:
|
||||||
name: linux nightly build
|
name: linux nightly build
|
||||||
tag_name: next_linux_x86_64
|
tag_name: next_linux_x86_64
|
||||||
|
prerelease: true
|
||||||
files: |
|
files: |
|
||||||
nasal-Linux.tar
|
nasal-Linux.tar
|
||||||
|
|
Loading…
Reference in New Issue