diff options
| author | Daniel Gavin <danielgavin5@hotmail.com> | 2021-05-05 01:13:43 +0200 |
|---|---|---|
| committer | Daniel Gavin <danielgavin5@hotmail.com> | 2021-05-05 01:13:43 +0200 |
| commit | 09cc33bffd08e16fadafebe11aa16183207e9090 (patch) | |
| tree | 6925f34c90b27309dfa5175576ca9336c6a235a4 /.github | |
| parent | d9dee12e0e4efd235c5b88336713c26c35fe2055 (diff) | |
update readme and pipeline
Diffstat (limited to '.github')
| -rw-r--r-- | .github/workflows/ci.yml | 3 | ||||
| -rw-r--r-- | .github/workflows/nightly.yml | 2 |
2 files changed, 5 insertions, 0 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index fe6e2dd..e5e23ac 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -16,6 +16,7 @@ on: jobs: build_windows: runs-on: windows-latest + timeout-minutes: 15 steps: - uses: actions/checkout@v1 - name: Download Odin @@ -40,6 +41,7 @@ jobs: run: ./build.bat CI build_linux: runs-on: ubuntu-latest + timeout-minutes: 15 steps: - uses: actions/checkout@v1 - name: Download LLVM @@ -54,6 +56,7 @@ jobs: run: ./build.sh CI build_macOS: runs-on: macos-latest + timeout-minutes: 15 steps: - uses: actions/checkout@v1 - name: Download LLVM and setup PATH diff --git a/.github/workflows/nightly.yml b/.github/workflows/nightly.yml index af96c7c..1533069 100644 --- a/.github/workflows/nightly.yml +++ b/.github/workflows/nightly.yml @@ -7,6 +7,7 @@ on: - cron: 0 20 * * * jobs: dist-x86_64-pc-windows-msvc: + timeout-minutes: 30 runs-on: windows-latest steps: - uses: actions/checkout@v1 @@ -46,6 +47,7 @@ jobs: publish: name: publish runs-on: ubuntu-16.04 + timeout-minutes: 30 needs: ['dist-x86_64-pc-windows-msvc'] steps: - name: Install Nodejs |