Skip to content
Closed
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
23 changes: 6 additions & 17 deletions .github/workflows/build_and_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -77,25 +77,14 @@ jobs:
- uses: actions/checkout@v5
- name: Build
run: |
docker run swift:6.1 uname -a
docker run -v $PWD:/spark -w /spark swift:6.1 swift build -c release
docker run swift:6.2 uname -a
docker run -v $PWD:/spark -w /spark swift:6.2 swift build -c release

# setup-swift doesn't support ARM linux yet.
build-ubuntu-arm:
runs-on: ubuntu-24.04-arm
timeout-minutes: 20
steps:
- uses: actions/checkout@v5
- name: Build
run: |
docker run swift:6.1 uname -a
docker run -v $PWD:/spark -w /spark swift:6.1 swift build -c release

build-ubuntu-swift62:
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This is merged into build-ubuntu-latest.

runs-on: ubuntu-latest
timeout-minutes: 20
steps:
- uses: actions/checkout@v5
- name: Build
run: |
docker run swift:6.2 uname -a
Expand All @@ -117,8 +106,8 @@ jobs:
- uses: actions/checkout@v5
- name: Build
run: |
docker run swift:6.1 uname -a
docker run --add-host=host.docker.internal:host-gateway -v $PWD:/spark -w /spark -e SPARK_REMOTE='sc://host.docker.internal:15003' swift:6.1 swift test --no-parallel -c release
docker run swift:6.2 uname -a
docker run --add-host=host.docker.internal:host-gateway -v $PWD:/spark -w /spark -e SPARK_REMOTE='sc://host.docker.internal:15003' swift:6.2 swift test --no-parallel -c release

integration-test-ubuntu-spark41:
runs-on: ubuntu-latest
Expand All @@ -136,8 +125,8 @@ jobs:
- uses: actions/checkout@v5
- name: Build
run: |
docker run swift:6.1 uname -a
docker run --add-host=host.docker.internal:host-gateway -v $PWD:/spark -w /spark -e SPARK_REMOTE='sc://host.docker.internal:15003' swift:6.1 swift test --no-parallel -c release
docker run swift:6.2 uname -a
docker run --add-host=host.docker.internal:host-gateway -v $PWD:/spark -w /spark -e SPARK_REMOTE='sc://host.docker.internal:15003' swift:6.2 swift test --no-parallel -c release

integration-test-mac-spark41:
runs-on: macos-15
Expand Down
Loading