diff options
| author | Laytan Laats <laytanlaats@hotmail.com> | 2024-02-02 20:59:04 +0100 |
|---|---|---|
| committer | Laytan Laats <laytanlaats@hotmail.com> | 2024-02-02 21:10:35 +0100 |
| commit | d5db49a3b07cbe731d308a52234a3a80192c8dfe (patch) | |
| tree | 2e672bddc5e79b9ea0ebbcdae0e4e9150e8b37d4 /.github | |
| parent | 606f11ebe8e6bef1a8f0615c3cdceb556d8d6da6 (diff) | |
name the workflows
Diffstat (limited to '.github')
| -rw-r--r-- | .github/workflows/ci.yml | 4 | ||||
| -rw-r--r-- | .github/workflows/nightly.yml | 4 |
2 files changed, 8 insertions, 0 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 99510d524..1d30e1dd0 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -3,6 +3,7 @@ on: [push, pull_request, workflow_dispatch] jobs: build_linux: + name: Ubuntu Build, Check, and Test runs-on: ubuntu-latest steps: - uses: actions/checkout@v1 @@ -56,6 +57,7 @@ jobs: run: ./odin check examples/all -vet -strict-style -target:openbsd_amd64 timeout-minutes: 10 build_macOS: + name: MacOS Build, Check, and Test runs-on: macos-latest steps: - uses: actions/checkout@v1 @@ -96,6 +98,7 @@ jobs: make timeout-minutes: 10 build_macOS_arm: + name: MacOS ARM Build, Check, and Test runs-on: macos-14 # This is an arm/m1 runner. steps: - uses: actions/checkout@v1 @@ -136,6 +139,7 @@ jobs: make timeout-minutes: 10 build_windows: + name: Windows Build, Check, and Test runs-on: windows-2022 steps: - uses: actions/checkout@v1 diff --git a/.github/workflows/nightly.yml b/.github/workflows/nightly.yml index 24a64104d..481434a7a 100644 --- a/.github/workflows/nightly.yml +++ b/.github/workflows/nightly.yml @@ -7,6 +7,7 @@ on: jobs: build_windows: + name: Windows Build if: github.repository == 'odin-lang/Odin' runs-on: windows-2022 steps: @@ -40,6 +41,7 @@ jobs: name: windows_artifacts path: dist build_ubuntu: + name: Ubuntu Build if: github.repository == 'odin-lang/Odin' runs-on: ubuntu-latest steps: @@ -67,6 +69,7 @@ jobs: name: ubuntu_artifacts path: dist build_macos: + name: MacOS Build if: github.repository == 'odin-lang/Odin' runs-on: macos-latest steps: @@ -97,6 +100,7 @@ jobs: name: macos_artifacts path: dist build_macos_arm: + name: MacOS ARM Build if: github.repository == 'odin-lang/Odin' runs-on: macos-14 steps: |