Skip to content

Commit

Permalink
Linux arm tests
Browse files Browse the repository at this point in the history
Signed-off-by: Prabhu Subramanian <[email protected]>
  • Loading branch information
prabhu committed Jan 20, 2025
1 parent e6b6d67 commit 3e81e98
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 11 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/dockertests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
strategy:
fail-fast: true
matrix:
os: [ubuntu-latest]
os: ['ubuntu-24.04', 'ubuntu-24.04-arm']
node-version: ['23.x']
java-version: ['23']
runs-on: ${{ matrix.os }}
Expand Down Expand Up @@ -85,7 +85,7 @@ jobs:
linux-dockertar-tests:
strategy:
matrix:
os: [ubuntu-latest]
os: ['ubuntu-24.04', 'ubuntu-24.04-arm']
node-version: ['23.x']
java-version: ['23']
runs-on: ${{ matrix.os }}
Expand Down Expand Up @@ -134,7 +134,7 @@ jobs:
env:
CDXGEN_DEBUG_MODE: debug
os-tests:
runs-on: ubuntu-latest
runs-on: ubuntu-24.04

strategy:
matrix:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ on:
pull_request:
jobs:
lint:
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/nodejs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ concurrency:
cancel-in-progress: true
jobs:
build:
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
permissions:
contents: read
strategy:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/python-atom-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ concurrency:
cancel-in-progress: true
jobs:
build:
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
strategy:
matrix:
node-version: ['23.x']
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/repotests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
fail-fast: true
matrix:
node-version: ['23.x']
os: ['ubuntu-latest', 'windows-latest']
os: ['ubuntu-24.04', 'ubuntu-24.04-arm', 'windows-latest']
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
Expand All @@ -33,12 +33,12 @@ jobs:
deno-version: v2.x
- uses: oven-sh/setup-bun@v1
- name: Trim CI agent
if: matrix.os == 'ubuntu-latest'
if: matrix.os == 'ubuntu-24.04' || matrix.os == 'ubuntu-24.04-arm'
run: |
chmod +x contrib/free_disk_space.sh
./contrib/free_disk_space.sh
- name: Install bazelisk - linux
if: matrix.os == 'ubuntu-latest'
if: matrix.os == 'ubuntu-24.04' || matrix.os == 'ubuntu-24.04-arm'
run: |
curl -LO "https://github.com/bazelbuild/bazelisk/releases/download/v1.20.0/bazelisk-linux-amd64"
sudo mv bazelisk-linux-amd64 /usr/local/bin/bazel
Expand All @@ -61,7 +61,7 @@ jobs:
uses: android-actions/setup-android@v3
if: matrix.os != 'self-hosted'
- uses: swift-actions/setup-swift@v2
if: matrix.os == 'ubuntu-latest'
if: matrix.os == 'ubuntu-24.04' || matrix.os == 'ubuntu-24.04-arm'
- name: Set up Python
uses: actions/setup-python@v5
with:
Expand Down Expand Up @@ -606,7 +606,7 @@ jobs:
continue-on-error: true
shell: bash
- uses: actions/upload-artifact@v4
if: github.ref == 'refs/heads/master' && matrix.os == 'ubuntu-latest'
if: github.ref == 'refs/heads/master' && (matrix.os == 'ubuntu-24.04' || matrix.os == 'ubuntu-24.04-arm')
with:
name: bomresults
path: bomresults

0 comments on commit 3e81e98

Please sign in to comment.