Skip to content

Commit

Permalink
schedule check ci
Browse files Browse the repository at this point in the history
  • Loading branch information
jinzhongjia committed Jan 24, 2024
1 parent c3f5ab4 commit c683207
Show file tree
Hide file tree
Showing 2 changed files with 32 additions and 4 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/schedule.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
# http://webui.me
# https://github.com/webui-dev/webui
# Copyright (c) 2020-2023 Hassan Draga.
# Licensed under MIT License.
# All rights reserved.
#
# Special Thanks to Turiiya (https://github.com/ttytm)
name: schedule

on:
schedule:
- cron: '0 2 * * *'

jobs:
windows:
uses: ./.github/workflows/windows.yml
permissions:
contents: write

macos:
uses: ./.github/workflows/macos.yml
permissions:
contents: write

linux:
uses: ./.github/workflows/linux.yml
permissions:
contents: write
8 changes: 4 additions & 4 deletions .github/workflows/windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ jobs:
- uses: goto-bus-stop/setup-zig@v2
- name: build_examples_static
run: zig build build_all
- name: build_examples_dynamic
run: zig build build_all -Dis_static=false
# - name: build_examples_dynamic
# run: zig build build_all -Dis_static=false

build_release:
runs-on: windows-latest
Expand All @@ -30,5 +30,5 @@ jobs:
version: 0.11.0
- name: build_examples
run: zig build build_all
- name: build_examples_dynamic
run: zig build build_all -Dis_static=false
# - name: build_examples_dynamic
# run: zig build build_all -Dis_static=false

0 comments on commit c683207

Please sign in to comment.