diff options
author | Liav A <liavalb@gmail.com> | 2022-10-04 02:48:37 +0300 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2022-12-28 11:53:41 +0100 |
commit | 55f17fff3669e09157de8a69a7a51181403228d0 (patch) | |
tree | 117ef67505ec6ff22f3a7164de0a409e413e5456 /.github | |
parent | d3eb4f7a41f0968872e3dfad8ebaa236fe00334f (diff) | |
download | serenity-55f17fff3669e09157de8a69a7a51181403228d0.zip |
Meta: Remove i686 target
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/cmake.yml | 12 | ||||
-rw-r--r-- | .github/workflows/pvs-studio-static-analysis.yml | 2 | ||||
-rw-r--r-- | .github/workflows/sonar-cloud-static-analysis.yml | 2 |
3 files changed, 6 insertions, 10 deletions
diff --git a/.github/workflows/cmake.yml b/.github/workflows/cmake.yml index f9a801dfd0..7762519296 100644 --- a/.github/workflows/cmake.yml +++ b/.github/workflows/cmake.yml @@ -22,13 +22,9 @@ jobs: matrix: debug-options: ['ALL_DEBUG', 'NORMAL_DEBUG'] os: [ubuntu-22.04] - arch: ['i686', 'x86_64'] + arch: ['x86_64'] # If ccache is broken and you would like to bust the ccache cache on Github Actions, increment this: ccache-mark: [0] - exclude: - # We currently manually disable the ALL_DEBUG build on x86_64 for sake of saving CI time, as it is not our main target right now - - debug-options: 'ALL_DEBUG' - arch: 'x86_64' steps: # Pull requests can trail behind `master` and can cause breakage if merging before running the CI checks on an updated branch. @@ -121,8 +117,8 @@ jobs: - name: Show ccache stats before build and configure run: | # We only have 5 GiB of cache available *in total*. Beyond that, GitHub deletes caches. - # Currently, we use about 130 MB for the two toolchains (i686 & x86_64), and three ccache caches: - # One with ALL_DEBUG (i686) and two with NORMAL_DEBUG (i686 & x86_64). + # Currently, we use about 130 MB for the toolchains (x86_64), and 2 ccache caches: + # One with ALL_DEBUG (x86_64), and one with NORMAL_DEBUG (x86_64). # Therefore, using 1.6 GB or more per cache causes disaster. # Building from scratch fills the ccache cache from 0 to about 0.7 GB, and after compression it comes out to # about 0.25 GB, so 3 GB (1GB after compression) should be plenty, all while comfortably fitting in the cache. @@ -231,7 +227,7 @@ jobs: run: '[ ! -e debug.log ] || cat debug.log' - name: Check manpages for completeness - if: ${{ matrix.debug-options == 'NORMAL_DEBUG' && matrix.arch == 'i686'}} + if: ${{ matrix.debug-options == 'NORMAL_DEBUG' && matrix.arch == 'x86_64'}} working-directory: ${{ github.workspace }}/Build/${{ matrix.arch }} env: # The script already sets the correct SERENITY_RUN and SERENITY_KERNEL_CMDLINE envvars. diff --git a/.github/workflows/pvs-studio-static-analysis.yml b/.github/workflows/pvs-studio-static-analysis.yml index 967f5c6739..c8da2ebf5a 100644 --- a/.github/workflows/pvs-studio-static-analysis.yml +++ b/.github/workflows/pvs-studio-static-analysis.yml @@ -9,7 +9,7 @@ jobs: name: Static Analysis runs-on: ubuntu-22.04 env: - PVS_STUDIO_ANALYSIS_ARCH: i686 + PVS_STUDIO_ANALYSIS_ARCH: x86_64 if: always() && github.repository == 'SerenityOS/serenity' && github.ref == 'refs/heads/master' steps: - uses: actions/checkout@v3 diff --git a/.github/workflows/sonar-cloud-static-analysis.yml b/.github/workflows/sonar-cloud-static-analysis.yml index bed563771f..5f1993ffff 100644 --- a/.github/workflows/sonar-cloud-static-analysis.yml +++ b/.github/workflows/sonar-cloud-static-analysis.yml @@ -13,7 +13,7 @@ jobs: # Latest scanner version is tracked on: https://docs.sonarcloud.io/advanced-setup/ci-based-analysis/sonarscanner-cli/ SONAR_SCANNER_VERSION: 4.7.0.2747 SONAR_SERVER_URL: "https://sonarcloud.io" - SONAR_ANALYSIS_ARCH: i686 + SONAR_ANALYSIS_ARCH: x86_64 steps: - uses: actions/checkout@v3 with: |