Skip to content

Commit

Permalink
Merge pull request #42 from ValKmjolnir/develop
Browse files Browse the repository at this point in the history
📝 update nightly build ci
  • Loading branch information
ValKmjolnir committed May 16, 2024
2 parents 4f0afb3 + ad87298 commit b32d4f8
Showing 1 changed file with 20 additions and 8 deletions.
28 changes: 20 additions & 8 deletions .github/workflows/c-cpp.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,12 +14,17 @@ jobs:
runs-on: macos-latest
steps:
- 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
run: |
make -j4
cd module
make all -j4
cd ..
make -j4
cd module
make all -j4
cd ..
- name: Test
run: make test
- name: Package
Expand All @@ -30,19 +35,25 @@ jobs:
name: macOS nightly build
tag_name: next_macOS
prerelease: true
draft: false
files: |
nasal-Darwin.tar
linux-x86_64-build:
runs-on: ubuntu-latest
steps:
- 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
run: |
make -j4
cd module
make all -j4
cd ..
make -j4
cd module
make all -j4
cd ..
- name: Test
run: make test
- name: Package
Expand All @@ -53,5 +64,6 @@ jobs:
name: linux nightly build
tag_name: next_linux_x86_64
prerelease: true
draft: false
files: |
nasal-Linux.tar

0 comments on commit b32d4f8

Please sign in to comment.