Skip to content

Commit 666abad

Browse files
authored
[FSSDK-11077] clean up travis (#379)
1 parent 10b8af3 commit 666abad

File tree

4 files changed

+7
-15
lines changed

4 files changed

+7
-15
lines changed

.github/workflows/csharp.yml

+2-4
Original file line numberDiff line numberDiff line change
@@ -103,17 +103,15 @@ jobs:
103103
integration_tests:
104104
name: Run Integration Tests
105105
needs: [ netFrameworksAndUnitTest, netStandard16, netStandard20 ]
106-
uses: optimizely/csharp-sdk/.github/workflows/integration_test.yml@master
106+
uses: optimizely/csharp-sdk/.github/workflows/integration_test.yml@jae/FSSDK-11077
107107
secrets:
108108
CI_USER_TOKEN: ${{ secrets.CI_USER_TOKEN }}
109-
TRAVIS_COM_TOKEN: ${{ secrets.TRAVIS_COM_TOKEN }}
110109

111110
fullstack_production_suite:
112111
name: Run Performance Tests
113112
needs: [ netFrameworksAndUnitTest, netStandard16, netStandard20 ]
114-
uses: optimizely/csharp-sdk/.github/workflows/integration_test.yml@master
113+
uses: optimizely/csharp-sdk/.github/workflows/integration_test.yml@jae/FSSDK-11077
115114
with:
116115
FULLSTACK_TEST_REPO: ProdTesting
117116
secrets:
118117
CI_USER_TOKEN: ${{ secrets.CI_USER_TOKEN }}
119-
TRAVIS_COM_TOKEN: ${{ secrets.TRAVIS_COM_TOKEN }}

.github/workflows/integration_test.yml

+3-8
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,6 @@ on:
99
secrets:
1010
CI_USER_TOKEN:
1111
required: true
12-
TRAVIS_COM_TOKEN:
13-
required: true
1412
jobs:
1513
test:
1614
runs-on: ubuntu-latest
@@ -19,23 +17,21 @@ jobs:
1917
with:
2018
# You should create a personal access token and store it in your repository
2119
token: ${{ secrets.CI_USER_TOKEN }}
22-
repository: 'optimizely/travisci-tools'
23-
path: 'home/runner/travisci-tools'
20+
repository: 'optimizely/ci-helper-tools'
21+
path: 'home/runner/ci-helper-tools'
2422
ref: 'master'
2523
- name: set SDK Branch if PR
2624
env:
2725
HEAD_REF: ${{ github.head_ref }}
2826
if: ${{ github.event_name == 'pull_request' }}
2927
run: |
3028
echo "SDK_BRANCH=$HEAD_REF" >> $GITHUB_ENV
31-
echo "TRAVIS_BRANCH=$HEAD_REF" >> $GITHUB_ENV
3229
- name: set SDK Branch if not pull request
3330
env:
3431
REF_NAME: ${{ github.ref_name }}
3532
if: ${{ github.event_name != 'pull_request' }}
3633
run: |
3734
echo "SDK_BRANCH=$REF_NAME" >> $GITHUB_ENV
38-
echo "TRAVIS_BRANCH=$REF_NAME" >> $GITHUB_ENV
3935
- name: Trigger build
4036
env:
4137
SDK: csharp
@@ -51,9 +47,8 @@ jobs:
5147
PULL_REQUEST_SHA: ${{ github.event.pull_request.head.sha }}
5248
PULL_REQUEST_NUMBER: ${{ github.event.pull_request.number }}
5349
UPSTREAM_SHA: ${{ github.sha }}
54-
TOKEN: ${{ secrets.TRAVIS_COM_TOKEN }}
5550
EVENT_MESSAGE: ${{ github.event.message }}
5651
HOME: 'home/runner'
5752
run: |
5853
echo "$GITHUB_CONTEXT"
59-
home/runner/travisci-tools/trigger-script-with-status-update.sh
54+
home/runner/ci-helper-tools/trigger-script-with-status-update.sh

OptimizelySDK.DemoApp/Scripts/README.md

+1-2
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@
77
</p>
88

99
<p align="center">
10-
<a href="https://travis-ci.org/FezVrasta/popper.js/branches" target="_blank"><img src="https://travis-ci.org/FezVrasta/popper.js.svg?branch=master" alt="Build Status"/></a>
1110
<img src="http://img.badgesize.io/https://unpkg.com/popper.js/dist/popper.min.js?compression=gzip" alt="Stable Release Size"/>
1211
<a href="https://www.bithound.io/github/FezVrasta/popper.js"><img src="https://www.bithound.io/github/FezVrasta/popper.js/badges/score.svg" alt="bitHound Overall Score"></a>
1312
<a href="https://codeclimate.com/github/FezVrasta/popper.js/coverage"><img src="https://codeclimate.com/github/FezVrasta/popper.js/badges/coverage.svg" alt="Istanbul Code Coverage"/></a>
@@ -34,7 +33,7 @@ to make it possible to position it near a given reference element.
3433

3534
The engine is completely modular and most of its features are implemented as **modifiers**
3635
(similar to middlewares or plugins).
37-
The whole code base is written in ES2015 and its features are automatically tested on real browsers thanks to [SauceLabs](https://saucelabs.com/) and [TravisCI](https://travis-ci.org/).
36+
The whole code base is written in ES2015 and its features are automatically tested on real browsers thanks to [SauceLabs](https://saucelabs.com/).
3837

3938
Popper.js has zero dependencies. No jQuery, no LoDash, nothing.
4039
It's used by big companies like [Twitter in Bootstrap v4](https://getbootstrap.com/), [Microsoft in WebClipper](https://github.com/OneNoteDev/WebClipper) and [Atlassian in AtlasKit](https://aui-cdn.atlassian.com/atlaskit/registry/).

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Optimizely C# SDK
22
![Semantic](https://img.shields.io/badge/sem-ver-lightgrey.svg?style=plastic)
3-
[![Build Status](https://travis-ci.org/optimizely/csharp-sdk.svg?branch=master)](https://travis-ci.org/optimizely/csharp-sdk)
3+
![CI](https://github.com/optimizely/csharp-sdk/actions/workflows/csharp.yml/badge.svg?branch=master)
44
[![NuGet](https://img.shields.io/nuget/v/Optimizely.SDK.svg?style=plastic)](https://www.nuget.org/packages/Optimizely.SDK/)
55
[![Apache 2.0](https://img.shields.io/github/license/nebula-plugins/gradle-extra-configurations-plugin.svg)](http://www.apache.org/licenses/LICENSE-2.0)
66

0 commit comments

Comments
 (0)