Skip to content

Commit ca53caa

Browse files
author
Justin Boswell
authored
Use github actions for OSX (#164)
* Use github actions for OSX * Remove .travis.yml
1 parent c83309f commit ca53caa

File tree

2 files changed

+23
-23
lines changed

2 files changed

+23
-23
lines changed

.github/workflows/mac-osx-ci.yml

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
name: CI
2+
3+
on: [push]
4+
5+
jobs:
6+
OSX:
7+
8+
runs-on: macOS-10.14
9+
10+
steps:
11+
- name: Checkout Source
12+
uses: actions/checkout@v1
13+
14+
- name: Install Dependencies
15+
run: |
16+
brew install llvm
17+
export PATH=$(brew --prefix llvm)/bin:$PATH
18+
19+
- name: Build and test
20+
run: |
21+
export CODEBUILD_SRC_DIR=$(pwd)
22+
python3 -c "from urllib.request import urlretrieve; urlretrieve('https://raw.githubusercontent.com/awslabs/aws-c-common/master/codebuild/builder.py', 'builder.py')"
23+
python3 builder.py build macos-default-default-macos-x64

.travis.yml

Lines changed: 0 additions & 23 deletions
This file was deleted.

0 commit comments

Comments
 (0)