File tree 3 files changed +21
-9
lines changed
3 files changed +21
-9
lines changed Original file line number Diff line number Diff line change @@ -4,27 +4,34 @@ on: # rebuild any PRs and main branch changes
4
4
push :
5
5
branches :
6
6
- master
7
- - ' releases/*'
8
7
9
8
jobs :
10
9
build : # make sure build/ci work properly
11
- runs-on : macOS-latest
10
+ strategy :
11
+ matrix :
12
+ os : [ubuntu-18.04]
13
+ runs-on : ${{ matrix.os }}
12
14
steps :
13
15
- uses : actions/checkout@v2
14
16
- run : |
15
17
npm install
16
18
npm run all
17
19
test : # make sure the action works on a clean machine without building
18
- runs-on : macOS-latest
20
+ needs : [build]
21
+ strategy :
22
+ matrix :
23
+ os : [ubuntu-18.04]
24
+ runs-on : ${{ matrix.os }}
19
25
steps :
20
26
- uses : actions/checkout@v2
21
27
- uses : ./
22
28
with :
23
29
version : ' 5.1.3'
24
- platform : ' osx '
30
+ platform : ubuntu-18.04
25
31
- run : swift --version
26
32
publish :
27
- runs-on : macOS-latest
33
+ needs : [build, test]
34
+ runs-on : ubuntu-18.04
28
35
steps :
29
36
- uses : actions/checkout@v2
30
37
- uses : TG908/publish-github-action@v1
Original file line number Diff line number Diff line change @@ -4567,12 +4567,15 @@ const io = __importStar(__webpack_require__(1));
4567
4567
const path = __importStar ( __webpack_require__ ( 622 ) ) ;
4568
4568
function getSwift ( version , platform ) {
4569
4569
return __awaiter ( this , void 0 , void 0 , function * ( ) {
4570
- if ( platform === 'osx ' ) {
4570
+ if ( process . platform === 'darwin ' ) {
4571
4571
return getSwiftMacOS ( version , platform ) ;
4572
4572
}
4573
- else {
4573
+ else if ( process . platform === 'linux' ) {
4574
4574
return getSwiftLinux ( version , platform ) ;
4575
4575
}
4576
+ else {
4577
+ core . setFailed ( 'Platform not supported' ) ;
4578
+ }
4576
4579
} ) ;
4577
4580
}
4578
4581
exports . getSwift = getSwift ;
Original file line number Diff line number Diff line change @@ -8,10 +8,12 @@ export async function getSwift(
8
8
version : string ,
9
9
platform : string
10
10
) : Promise < void > {
11
- if ( platform === 'osx ' ) {
11
+ if ( process . platform === 'darwin ' ) {
12
12
return getSwiftMacOS ( version , platform )
13
- } else {
13
+ } else if ( process . platform === 'linux' ) {
14
14
return getSwiftLinux ( version , platform )
15
+ } else {
16
+ core . setFailed ( 'Platform not supported' )
15
17
}
16
18
}
17
19
You can’t perform that action at this time.
0 commit comments