mirror of
https://github.com/yuzu-emu/liftinstall
synced 2024-11-23 17:13:49 +00:00
ci: switch to GitHub Actions completely
This commit is contained in:
parent
9866a32c10
commit
351be36f05
2 changed files with 13 additions and 33 deletions
13
.github/workflows/test-build.yml
vendored
13
.github/workflows/test-build.yml
vendored
|
@ -5,18 +5,25 @@ on: [push, pull_request]
|
||||||
jobs:
|
jobs:
|
||||||
build:
|
build:
|
||||||
|
|
||||||
runs-on: windows-latest
|
runs-on: ${{ matrix.os }}
|
||||||
|
strategy:
|
||||||
|
matrix:
|
||||||
|
os: [ubuntu-latest, windows-latest, macOS-latest]
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- uses: hecrj/setup-rust-action@master
|
- uses: hecrj/setup-rust-action@master
|
||||||
with:
|
with:
|
||||||
rust-version: stable
|
rust-version: stable
|
||||||
|
|
||||||
|
- name: Install dependencies
|
||||||
|
run: sudo apt-get update && sudo apt-get install -y libwebkit2gtk-4.0-dev libssl-dev
|
||||||
|
if: runner.os == 'Linux'
|
||||||
|
|
||||||
- uses: actions/setup-node@v1
|
- uses: actions/setup-node@v1
|
||||||
with:
|
with:
|
||||||
node-version: '10.x'
|
node-version: '12.x'
|
||||||
- run: npm install -g yarn
|
- run: npm install -g yarn
|
||||||
|
|
||||||
- uses: actions/checkout@v1
|
- uses: actions/checkout@v2
|
||||||
- name: Build
|
- name: Build
|
||||||
run: cargo build --verbose
|
run: cargo build --verbose
|
||||||
|
|
27
.travis.yml
27
.travis.yml
|
@ -1,27 +0,0 @@
|
||||||
matrix:
|
|
||||||
include:
|
|
||||||
- os: linux
|
|
||||||
language: cpp
|
|
||||||
sudo: required
|
|
||||||
dist: trusty
|
|
||||||
services: docker
|
|
||||||
install: docker pull rust:1
|
|
||||||
cache:
|
|
||||||
directories:
|
|
||||||
- $HOME/.cargo
|
|
||||||
- $TRAVIS_BUILD_DIR/ui/node_modules
|
|
||||||
script: docker run -v $HOME/.cargo:/root/.cargo -v $(pwd):/liftinstall rust:1 /bin/bash -ex /liftinstall/.travis/build.sh
|
|
||||||
|
|
||||||
- os: osx
|
|
||||||
language: rust
|
|
||||||
cache: cargo
|
|
||||||
osx_image: xcode10
|
|
||||||
script: brew install yarn && cargo build
|
|
||||||
|
|
||||||
- os: windows
|
|
||||||
language: rust
|
|
||||||
cache: cargo
|
|
||||||
script:
|
|
||||||
- choco install nodejs yarn
|
|
||||||
- export PATH="$PROGRAMFILES/nodejs/:$PROGRAMFILES (x86)/Yarn/bin/:$PATH"
|
|
||||||
- cargo build
|
|
Loading…
Reference in a new issue