Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update runners #2

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 3 additions & 14 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,21 +9,14 @@ on:

jobs:
release-windows:
runs-on: windows-2016
env:
MSVER: "14.16.27023"
WKITVER: "10.0.17134.0"
runs-on: windows-2019
steps:
- uses: actions/checkout@master
- name: Setup MSVC++
uses: ilammy/msvc-dev-cmd@v1
with:
arch: x86
sdk: ${{ env.WKITVER }}
toolset: ${{ env.MSVER }}
- uses: actions/setup-python@v2
with:
python-version: '2.7'
- name: Building
run: |
.\make.bat
Expand All @@ -47,12 +40,10 @@ jobs:
CONAN_ARCHS: x86_64
OH_PLATFORM: Linux-x64
COMPILER_NAME: gcc
runs-on: ubuntu-latest
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@master
- uses: actions/setup-python@v2
with:
python-version: '2.7'
- name: Setup environment
shell: bash
run: |
Expand All @@ -76,14 +67,12 @@ jobs:
tag: ${{ github.ref }}

release-osx:
runs-on: macOS-latest
runs-on: macos-12
env:
OH_PLATFORM: Mac-x64
steps:
- uses: actions/checkout@master
- uses: maxim-lobanov/setup-xcode@v1
with:
xcode-version: '11.2.1'
- name: Building
run: |
make
Expand Down
Loading