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

Fix images in ci.yml #58

Merged
merged 2 commits into from
Mar 27, 2024
Merged
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
20 changes: 7 additions & 13 deletions ci.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,3 @@
resources:
repositories:
- repository: azure-sdk-build-tools
type: git
name: internal/azure-sdk-build-tools

trigger:
branches:
include:
Expand All @@ -30,7 +24,7 @@ stages:
jobs:
- job: 'Build'
pool:
vmImage: 'ubuntu-18.04'
vmImage: 'ubuntu-22.04'
strategy:
matrix:
Java 8:
Expand Down Expand Up @@ -83,32 +77,32 @@ stages:
matrix:
Linux - Java 8:
OSName: 'Linux'
OSVmImage: 'ubuntu-18.04'
OSVmImage: 'ubuntu-22.04'
ProfileFlag: '-Djava8'
JavaVersion: '1.8'
macOS - Java 8:
OSName: 'macOS'
OSVmImage: 'macOS-10.15'
OSVmImage: 'macOS-13'
ProfileFlag: '-Djava8'
JavaVersion: '1.8'
Windows - Java 8:
OSName: 'Windows'
OSVmImage: 'vs2017-win2016'
OSVmImage: 'windows-2022'
ProfileFlag: '-Djava8'
JavaVersion: '1.8'
Linux - Java LTS:
OSName: 'Linux'
OSVmImage: 'ubuntu-18.04'
OSVmImage: 'ubuntu-22.04'
ProfileFlag: '-Djava-lts'
JavaVersion: '1.11'
macOS - Java LTS:
OSName: 'macOS'
OSVmImage: 'macOS-10.15'
OSVmImage: 'macOS-13'
ProfileFlag: '-Djava-lts'
JavaVersion: '1.11'
Windows - Java LTS:
OSName: 'Windows'
OSVmImage: 'vs2017-win2016'
OSVmImage: 'windows-2022'
ProfileFlag: '-Djava-lts'
JavaVersion: '1.11'

Expand Down
Loading