Skip to content

Commit

Permalink
ci: rename jobs
Browse files Browse the repository at this point in the history
  • Loading branch information
Rosalie241 committed Jul 12, 2024
1 parent 746918a commit 3df6140
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: SporeModLoader
on: [push, pull_request]

jobs:
msvc-build:
build-msvc:
runs-on: windows-2022
steps:
- uses: actions/checkout@v4
Expand Down Expand Up @@ -47,7 +47,7 @@ jobs:
with:
name: msvc-build-artifacts
path: bin/*
linux-build:
build-linux:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v4
Expand All @@ -67,7 +67,7 @@ jobs:
with:
name: linux-build-artifacts
path: bin/*
mingw-build:
build-mingw:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v4
Expand All @@ -92,7 +92,7 @@ jobs:
path: bin/*
package-artifacts:
runs-on: ubuntu-20.04
needs: [ msvc-build, linux-build, mingw-build ]
needs: [ build-msvc, build-linux, build-mingw ]
steps:
- uses: actions/checkout@v4
with:
Expand Down Expand Up @@ -139,7 +139,7 @@ jobs:
msvc-build-artifacts
linux-build-artifacts
mingw-build-artifacts
msvc-test:
test-msvc:
runs-on: windows-2022
needs: [ package-artifacts ]
steps:
Expand All @@ -158,7 +158,7 @@ jobs:
- name: Test SporeModManager (msvc)
run: |
python3 ./SporeModManager/test.py ./artifact/SporeModLoader/SporeModManager/SporeModManager.exe
linux-test:
test-linux:
runs-on: ubuntu-20.04
needs: [ package-artifacts ]
steps:
Expand All @@ -177,7 +177,7 @@ jobs:
run: |
chmod +x ./artifact/SporeModLoader/SporeModManager/SporeModManager
python3 ./SporeModManager/test.py ./artifact/SporeModLoader/SporeModManager/SporeModManager
mingw-test:
test-mingw:
runs-on: windows-2022
needs: [ package-artifacts ]
steps:
Expand Down

0 comments on commit 3df6140

Please sign in to comment.