diff options
author | Patrick Lewis <pat@lo5t.com> | 2022-08-07 01:05:05 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-08-07 01:05:05 -0700 |
commit | 6ad764c520c29772690eb4a319cf043f1af33744 (patch) | |
tree | 5643100738fe636803b4324848d594cea4ae68d7 | |
parent | 286347417a90840bc558bd3b9d8c9f344e4bd6bd (diff) |
chore(CI): remove ubuntu-18.04 (#12650)
* chore(CI): remove ubuntu-18.04 and add ubuntu-22.04
* update ubuntu.sh
* update
* update
* openssl workaround
* update
* update
* update
-rw-r--r-- | .github/SECURITY.md | 12 | ||||
-rw-r--r-- | .github/workflows/core_matrix_build.yml | 6 | ||||
-rw-r--r-- | .github/workflows/core_modules_build.yml | 2 | ||||
-rw-r--r-- | .github/workflows/docker_build.yml | 2 | ||||
-rw-r--r-- | .github/workflows/macos_build.yml | 2 | ||||
-rw-r--r-- | .github/workflows/windows_build.yml | 2 |
6 files changed, 11 insertions, 15 deletions
diff --git a/.github/SECURITY.md b/.github/SECURITY.md index b55b3cc602..13faf3a072 100644 --- a/.github/SECURITY.md +++ b/.github/SECURITY.md @@ -55,15 +55,15 @@ Versions of Ubuntu: | Ubuntu version | Supported | | -------------- | ------------------ | | 20.04 | :white_check_mark: | -| 18.04 | :white_check_mark: | +| 18.04 and lower| :red_circle: | Versions of macOS: -| macOS Version | Supported | -| ------------- | ------------------ | -| 12 | :white_check_mark: | -| 11 | :white_check_mark: | -| 10.15 | :white_check_mark: | +| macOS Version | Supported | +| -------------- | ------------------ | +| 12 | :white_check_mark: | +| 11 | :white_check_mark: | +| 10.15 and lower| :red_circle: | **Note**: We do NOT support any repacks that may or may not have been made based on AzerothCore. Nor do we support any of the releases that are made under AzerothCore. diff --git a/.github/workflows/core_matrix_build.yml b/.github/workflows/core_matrix_build.yml index 95732a4034..5852c6c17b 100644 --- a/.github/workflows/core_matrix_build.yml +++ b/.github/workflows/core_matrix_build.yml @@ -4,7 +4,7 @@ on: branches: - 'master' pull_request: - types: ['labeled', 'labeled', 'opened', 'synchronize', 'reopened'] + types: ['labeled', 'opened', 'synchronize', 'reopened'] concurrency: group: ${{ github.head_ref }} || concat(${{ github.ref }}, ${{ github.workflow }}) @@ -21,10 +21,6 @@ jobs: compiler: clang12 - os: ubuntu-20.04 compiler: clang11 - - os: ubuntu-18.04 - compiler: clang10 - - os: ubuntu-18.04 - compiler: gcc8 - os: ubuntu-20.04 compiler: gcc # default in 20.04 is gcc 9 - os: ubuntu-20.04 diff --git a/.github/workflows/core_modules_build.yml b/.github/workflows/core_modules_build.yml index 6db57dcfc7..7003d96f9e 100644 --- a/.github/workflows/core_modules_build.yml +++ b/.github/workflows/core_modules_build.yml @@ -4,7 +4,7 @@ on: branches: - 'master' pull_request: - types: ['labeled', 'labeled', 'opened', 'synchronize', 'reopened'] + types: ['labeled', 'opened', 'synchronize', 'reopened'] concurrency: group: ${{ github.head_ref }} || concat(${{ github.ref }}, ${{ github.workflow }}) diff --git a/.github/workflows/docker_build.yml b/.github/workflows/docker_build.yml index 872f6c36ff..7ccbf23f92 100644 --- a/.github/workflows/docker_build.yml +++ b/.github/workflows/docker_build.yml @@ -4,7 +4,7 @@ on: branches: - 'master' pull_request: - types: ['labeled', 'labeled', 'opened', 'synchronize', 'reopened'] + types: ['labeled', 'opened', 'synchronize', 'reopened'] concurrency: group: ${{ github.head_ref }} || concat(${{ github.ref }}, ${{ github.workflow }}) diff --git a/.github/workflows/macos_build.yml b/.github/workflows/macos_build.yml index 7ff8341cf6..5d58a15e69 100644 --- a/.github/workflows/macos_build.yml +++ b/.github/workflows/macos_build.yml @@ -4,7 +4,7 @@ on: branches: - 'master' pull_request: - types: ['labeled', 'labeled', 'opened', 'synchronize', 'reopened'] + types: ['labeled', 'opened', 'synchronize', 'reopened'] concurrency: group: ${{ github.head_ref }} || concat(${{ github.ref }}, ${{ github.workflow }}) diff --git a/.github/workflows/windows_build.yml b/.github/workflows/windows_build.yml index 43792b7547..6fb55ccc39 100644 --- a/.github/workflows/windows_build.yml +++ b/.github/workflows/windows_build.yml @@ -4,7 +4,7 @@ on: branches: - 'master' pull_request: - types: ['labeled', 'labeled', 'opened', 'synchronize', 'reopened'] + types: ['labeled', 'opened', 'synchronize', 'reopened'] concurrency: group: ${{ github.head_ref }} || concat(${{ github.ref }}, ${{ github.workflow }}) |