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

[workflows] Update CI to test release_18x, and stop testing release_16x #1446

Merged
merged 1 commit into from
May 15, 2024
Merged
Show file tree
Hide file tree
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
6 changes: 3 additions & 3 deletions .github/workflows/build_flang.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,16 +22,16 @@ jobs:
target: [X86]
cc: [clang]
version: [14, 15]
llvm_branch: [release_16x, release_17x]
llvm_branch: [release_17x, release_18x]
include:
- target: X86
cc: gcc
version: 12
llvm_branch: release_16x
llvm_branch: release_17x
- target: X86
cc: gcc
version: 12
llvm_branch: release_17x
llvm_branch: release_18x

steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so the job can access it
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/build_flang_arm64.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,13 +20,13 @@ jobs:
build_path: /home/github
install_prefix: /home/github/usr/local
container:
image: ghcr.io/${{ github.repository_owner}}/ubuntu20-flang-${{ matrix.llvm_branch }}:latest
image: ghcr.io/${{ github.repository_owner}}/ubuntu-flang-${{ matrix.llvm_branch }}:latest
credentials:
username: github
strategy:
matrix:
target: [AArch64]
llvm_branch: [release_16x, release_17x]
llvm_branch: [release_17x, release_18x]

steps:
- name: Check tools
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build_flang_windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
os:
- windows-latest
# - self-hosted
llvm_branch: [release_16x, release_17x]
llvm_branch: [release_17x, release_18x]
include:
- os: windows-latest
arch: amd64
Expand Down
Loading