👷 rename workflows
This commit is contained in:
parent
cd76f59af6
commit
ab02b08296
2 changed files with 5 additions and 5 deletions
4
.github/workflows/macos.yml
vendored
4
.github/workflows/macos.yml
vendored
|
@ -1,11 +1,11 @@
|
||||||
name: Windows
|
name: macOS
|
||||||
|
|
||||||
on: [push]
|
on: [push]
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
build:
|
build:
|
||||||
|
|
||||||
runs-on: windows-latest
|
runs-on: macos-latest
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v1
|
- uses: actions/checkout@v1
|
||||||
|
|
6
.github/workflows/windows.yml
vendored
6
.github/workflows/windows.yml
vendored
|
@ -1,18 +1,18 @@
|
||||||
name: macOS
|
name: Windows
|
||||||
|
|
||||||
on: [push]
|
on: [push]
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
build:
|
build:
|
||||||
|
|
||||||
runs-on: macos-latest
|
runs-on: windows-latest
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v1
|
- uses: actions/checkout@v1
|
||||||
- name: prepare
|
- name: prepare
|
||||||
run: mkdir build
|
run: mkdir build
|
||||||
- name: cmake
|
- name: cmake
|
||||||
run: cd build ; cmake ..
|
run: cd build ; cmake .. -G "Visual Studio 16 2019"
|
||||||
- name: build
|
- name: build
|
||||||
run: make -C build
|
run: make -C build
|
||||||
- name: test
|
- name: test
|
||||||
|
|
Loading…
Reference in a new issue