TmpMenu/.github/workflows/nightly.yml

163 lines
5.1 KiB
YAML
Raw Normal View History

2022-01-11 20:48:28 +08:00
name: Nightly Build
2022-01-04 00:19:03 +08:00
on:
schedule:
# cronjob that triggers every day at 2PM UTC
- cron: '0 14 * * *'
workflow_dispatch:
concurrency:
group: nightly
cancel-in-progress: true
2022-01-04 00:19:03 +08:00
jobs:
2024-05-25 05:22:05 +08:00
check_recent_commit:
runs-on: ubuntu-latest
name: Check Recent Commit
outputs:
should_run: ${{ steps.should_run.outputs.should_run }}
steps:
- uses: actions/checkout@v3
- id: should_run
name: Check if latest commit date is within the previous 24 hours
run: |
if [ -z "$(git rev-list --since="24 hours ago" --all)" ]; then
echo "should_run=false" >> $GITHUB_OUTPUT
else
echo "should_run=true" >> $GITHUB_OUTPUT
fi
build_nightly:
runs-on: windows-latest
2022-01-04 00:19:03 +08:00
name: Build Nightly
2024-05-25 05:22:05 +08:00
needs: check_recent_commit
if: needs.check_recent_commit.outputs.should_run == 'true'
2022-01-11 21:43:35 +08:00
outputs:
full_sha: ${{ steps.var.outputs.full_sha }}
short_sha: ${{ steps.var.outputs.short_sha }}
2022-01-04 00:19:03 +08:00
steps:
2022-11-11 18:34:32 +08:00
- uses: actions/checkout@v3
2022-01-04 00:19:03 +08:00
with:
submodules: recursive
- name: Check CMake version
run: cmake --version
2022-01-04 00:19:03 +08:00
- name: Setup MSVC environment
uses: ilammy/msvc-dev-cmd@v1
with:
arch: amd64
2022-01-04 00:19:03 +08:00
- name: Generate CMake project
2024-03-12 16:43:08 +08:00
run: cmake -D CMAKE_BUILD_TYPE=RelWithDebInfo -D OPTIMIZE=YES -S. -Bbuild -G Ninja
2022-01-04 00:19:03 +08:00
- name: Build 64bit release DLL
2024-03-12 16:43:08 +08:00
run: cmake --build ./build --config RelWithDebInfo --target YimMenu --
- name: Upload Artifact
2022-11-11 18:34:32 +08:00
uses: actions/upload-artifact@v3
with:
name: binary
2024-03-12 16:43:08 +08:00
path: |
build/YimMenu.dll
build/YimMenu.pdb
2022-01-11 21:43:35 +08:00
- name: Generate Build Info
id: var
run: |
echo "full_sha=$(git rev-parse HEAD)" >> $env:GITHUB_OUTPUT
echo "short_sha=$(git rev-parse --short HEAD)" >> $env:GITHUB_OUTPUT
2022-01-11 21:07:40 +08:00
2024-05-25 05:22:05 +08:00
recreate_release:
runs-on: ubuntu-latest
2024-05-25 05:22:05 +08:00
name: Recreate Release
needs: build_nightly
2024-05-25 05:22:05 +08:00
if: needs.check_recent_commit.outputs.should_run == 'true'
steps:
2022-11-11 18:34:32 +08:00
- uses: actions/checkout@v3
2024-05-25 05:22:05 +08:00
- name: Delete Existing Release
id: delete_release
uses: actions/github-script@v6
with:
script: |
const owner = context.repo.owner;
const repo = context.repo.repo;
const tag = "nightly";
// List all releases and find the release by tag
const releases = await github.rest.repos.listReleases({
owner: owner,
repo: repo,
});
const release = releases.data.find(release => release.tag_name === tag);
// Check if the release exists and delete it
if (release) {
await github.rest.repos.deleteRelease({
owner: owner,
repo: repo,
release_id: release.id,
});
console.log(`Deleted release with ID ${release.id}`);
} else {
console.log("No existing release to delete");
}
// Delete the tag
try {
await github.rest.git.deleteRef({
owner: owner,
repo: repo,
ref: `tags/${tag}`,
});
console.log(`Deleted tag ${tag}`);
} catch (error) {
console.error(`Error deleting tag: ${error.message}`);
}
- name: Download Artifact
2022-11-11 18:34:32 +08:00
uses: actions/download-artifact@v3
with:
name: binary
- name: Echo build sha256
id: build_sha
run: |
2022-01-11 21:27:11 +08:00
sha256sum YimMenu.dll > sha256.checksum
2022-11-11 18:34:32 +08:00
echo "build_sha=$(cat sha256.checksum)" >> $GITHUB_OUTPUT
cat sha256.checksum
- name: Nightly Release
uses: softprops/action-gh-release@v1
2022-01-04 00:19:03 +08:00
with:
2022-01-11 21:43:35 +08:00
name: Nightly [${{ needs.build_nightly.outputs.short_sha }}]
2022-01-11 21:07:40 +08:00
tag_name: nightly
2022-01-04 00:19:03 +08:00
body: |
**This release has been built by Github Actions**
[Link to build](${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }})
Build SHA256:
```
${{ steps.build_sha.outputs.build_sha }}
```
2022-01-11 23:56:44 +08:00
To verify the build SHA256 during the action, click the build link, go-to "Create Release", open the Echo build sha256 step and read the sha256.
2022-01-11 21:43:35 +08:00
You can download the build artifacts, generate a SHA256 checksum and compare it with the below binary.
2022-01-11 21:43:35 +08:00
Build artifacts ARE NOT automatically the same as release assets since release assets can be modified afterwards.
These are nightly builds of YimMenu, they are provided for testing purposes only:
- Test if your build environment produces a broken YimMenu.dll
- Test if source code is out of date and no longer compatible with the current version of GTA V
If you wish to use this menu as-is you are on your own, no warranty is provided.
2022-01-11 23:56:44 +08:00
Full Commit Hash:
```
${{ needs.build_nightly.outputs.full_sha }}
```
files: |
YimMenu.dll