Skip to content

Commit d93ff73

Browse files
committed
os detection
1 parent daece92 commit d93ff73

File tree

3 files changed

+21
-9
lines changed

3 files changed

+21
-9
lines changed

.github/workflows/test.yml

+12-5
Original file line numberDiff line numberDiff line change
@@ -4,27 +4,34 @@ on: # rebuild any PRs and main branch changes
44
push:
55
branches:
66
- master
7-
- 'releases/*'
87

98
jobs:
109
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 }}
1214
steps:
1315
- uses: actions/checkout@v2
1416
- run: |
1517
npm install
1618
npm run all
1719
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 }}
1925
steps:
2026
- uses: actions/checkout@v2
2127
- uses: ./
2228
with:
2329
version: '5.1.3'
24-
platform: 'osx'
30+
platform: ubuntu-18.04
2531
- run: swift --version
2632
publish:
27-
runs-on: macOS-latest
33+
needs: [build, test]
34+
runs-on: ubuntu-18.04
2835
steps:
2936
- uses: actions/checkout@v2
3037
- uses: TG908/publish-github-action@v1

dist/index.js

+5-2
Original file line numberDiff line numberDiff line change
@@ -4567,12 +4567,15 @@ const io = __importStar(__webpack_require__(1));
45674567
const path = __importStar(__webpack_require__(622));
45684568
function getSwift(version, platform) {
45694569
return __awaiter(this, void 0, void 0, function* () {
4570-
if (platform === 'osx') {
4570+
if (process.platform === 'darwin') {
45714571
return getSwiftMacOS(version, platform);
45724572
}
4573-
else {
4573+
else if (process.platform === 'linux') {
45744574
return getSwiftLinux(version, platform);
45754575
}
4576+
else {
4577+
core.setFailed('Platform not supported');
4578+
}
45764579
});
45774580
}
45784581
exports.getSwift = getSwift;

src/installer.ts

+4-2
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,12 @@ export async function getSwift(
88
version: string,
99
platform: string
1010
): Promise<void> {
11-
if (platform === 'osx') {
11+
if (process.platform === 'darwin') {
1212
return getSwiftMacOS(version, platform)
13-
} else {
13+
} else if (process.platform === 'linux') {
1414
return getSwiftLinux(version, platform)
15+
} else {
16+
core.setFailed('Platform not supported')
1517
}
1618
}
1719

0 commit comments

Comments
 (0)