File tree Expand file tree Collapse file tree 1 file changed +16
-14
lines changed Expand file tree Collapse file tree 1 file changed +16
-14
lines changed Original file line number Diff line number Diff line change 3939 with :
4040 config : .github/.licenserc.yaml
4141
42- build :
43- runs-on : ${{ matrix.os }}
44- strategy :
45- fail-fast : false
46- matrix :
47- os :
48- - ubuntu-latest
49- - macos-15
42+ build-macos-15 :
43+ runs-on : macos-15
5044 steps :
5145 - uses : actions/checkout@v4
5246 - uses : swift-actions/setup-swift@d10500c1ac8822132eebbd74c48c3372c71d7ff5
5549 - name : Build
5650 run : swift build -v
5751
52+ build-ubuntu-latest :
53+ runs-on : ubuntu-latest
54+ steps :
55+ - uses : actions/checkout@v4
56+ - name : Build
57+ run : |
58+ docker run swift:6.1 uname -a
59+ docker run -v $PWD:/spark -w /spark swift:6.1 swift build -v
60+
5861 # setup-swift doesn't support ARM linux yet.
5962 build-ubuntu-arm :
6063 runs-on : ubuntu-24.04-arm
6366 - name : Build
6467 run : |
6568 docker run swift:6.1 uname -a
66- docker run -v $PWD:/orc -w /orc swift:6.1 swift build -v
69+ docker run -v $PWD:/spark -w /spark swift:6.1 swift build -v
6770
6871 integration-test-linux :
6972 runs-on : ubuntu-latest
@@ -79,11 +82,10 @@ jobs:
7982 options : --entrypoint /opt/spark/sbin/start-connect-server.sh
8083 steps :
8184 - uses : actions/checkout@v4
82- - uses : swift-actions/setup-swift@d10500c1ac8822132eebbd74c48c3372c71d7ff5
83- with :
84- swift-version : " 6.1"
85- - name : Test
86- run : swift test --no-parallel
85+ - name : Build
86+ run : |
87+ docker run swift:6.1 uname -a
88+ 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
8789
8890 integration-test-mac :
8991 runs-on : macos-15
You can’t perform that action at this time.
0 commit comments