mirror of
https://github.com/linuxkit/linuxkit.git
synced 2025-07-19 09:16:29 +00:00
actions: Clean Up Post Merge
This commit moves the linuxkit binary in to /usr/local/bin. It also removes trailing spaces (oops) Signed-off-by: Dave Tucker <dave@dtucker.co.uk>
This commit is contained in:
parent
4028c363b1
commit
0fb8b116bb
80
.github/workflows/ci.yml
vendored
80
.github/workflows/ci.yml
vendored
@ -85,7 +85,7 @@ jobs:
|
|||||||
|
|
||||||
- name: Symlink Linuxkit
|
- name: Symlink Linuxkit
|
||||||
run: |
|
run: |
|
||||||
sudo ln -s `pwd`/lkt/linuxkit-amd64-linux /bin/linuxkit
|
sudo ln -s `pwd`/lkt/linuxkit-amd64-linux /usr/local/bin/linuxkit
|
||||||
|
|
||||||
- name: Build Packages
|
- name: Build Packages
|
||||||
run: |
|
run: |
|
||||||
@ -100,24 +100,24 @@ jobs:
|
|||||||
uses: actions/checkout@v1
|
uses: actions/checkout@v1
|
||||||
with:
|
with:
|
||||||
path: ./src/github.com/linuxkit/linuxkit
|
path: ./src/github.com/linuxkit/linuxkit
|
||||||
|
|
||||||
- name: Install Pre-Requisites
|
- name: Install Pre-Requisites
|
||||||
run: |
|
run: |
|
||||||
export DEBIAN_FRONTEND=noninteractive
|
export DEBIAN_FRONTEND=noninteractive
|
||||||
sudo apt-get update
|
sudo apt-get update
|
||||||
sudo apt-get install -qy qemu-utils qemu-system-x86 expect
|
sudo apt-get install -qy qemu-utils qemu-system-x86 expect
|
||||||
|
|
||||||
- name: Restore RTF From Cache
|
- name: Restore RTF From Cache
|
||||||
id: cache-rtf
|
id: cache-rtf
|
||||||
uses: actions/cache@v1
|
uses: actions/cache@v1
|
||||||
with:
|
with:
|
||||||
path: bin
|
path: bin
|
||||||
key: rtf-${{hashFiles('Makefile')}}
|
key: rtf-${{hashFiles('Makefile')}}
|
||||||
|
|
||||||
- name: Build RTF
|
- name: Build RTF
|
||||||
if: steps.cache-rtf.outputs.cache-hit != 'true'
|
if: steps.cache-rtf.outputs.cache-hit != 'true'
|
||||||
run: make bin/rtf
|
run: make bin/rtf
|
||||||
|
|
||||||
- name: Symlink RTF
|
- name: Symlink RTF
|
||||||
run: |
|
run: |
|
||||||
sudo ln -s `pwd`/bin/rtf /usr/local/bin/rtf
|
sudo ln -s `pwd`/bin/rtf /usr/local/bin/rtf
|
||||||
@ -127,10 +127,10 @@ jobs:
|
|||||||
with:
|
with:
|
||||||
path: lkt
|
path: lkt
|
||||||
key: linuxkit-amd64-linux-${{hashFiles('src/**')}}
|
key: linuxkit-amd64-linux-${{hashFiles('src/**')}}
|
||||||
|
|
||||||
- name: Symlink Linuxkit
|
- name: Symlink Linuxkit
|
||||||
run: |
|
run: |
|
||||||
sudo ln -s `pwd`/lkt/linuxkit-amd64-linux /bin/linuxkit
|
sudo ln -s `pwd`/lkt/linuxkit-amd64-linux /usr/local/bin/linuxkit
|
||||||
|
|
||||||
- name: Run Tests
|
- name: Run Tests
|
||||||
run: |
|
run: |
|
||||||
@ -146,11 +146,11 @@ jobs:
|
|||||||
uses: actions/checkout@v1
|
uses: actions/checkout@v1
|
||||||
with:
|
with:
|
||||||
path: ./src/github.com/linuxkit/linuxkit
|
path: ./src/github.com/linuxkit/linuxkit
|
||||||
|
|
||||||
- name: Install Pre-Requisites
|
- name: Install Pre-Requisites
|
||||||
run: |
|
run: |
|
||||||
export DEBIAN_FRONTEND=noninteractive
|
export DEBIAN_FRONTEND=noninteractive
|
||||||
sudo apt-get update
|
sudo apt-get update
|
||||||
sudo apt-get install -qy qemu-utils qemu-system-x86 expect
|
sudo apt-get install -qy qemu-utils qemu-system-x86 expect
|
||||||
|
|
||||||
- name: Restore RTF From Cache
|
- name: Restore RTF From Cache
|
||||||
@ -159,11 +159,11 @@ jobs:
|
|||||||
with:
|
with:
|
||||||
path: bin
|
path: bin
|
||||||
key: rtf-${{hashFiles('Makefile')}}
|
key: rtf-${{hashFiles('Makefile')}}
|
||||||
|
|
||||||
- name: Build RTF
|
- name: Build RTF
|
||||||
if: steps.cache-rtf.outputs.cache-hit != 'true'
|
if: steps.cache-rtf.outputs.cache-hit != 'true'
|
||||||
run: make bin/rtf
|
run: make bin/rtf
|
||||||
|
|
||||||
- name: Symlink RTF
|
- name: Symlink RTF
|
||||||
run: |
|
run: |
|
||||||
sudo ln -s `pwd`/bin/rtf /usr/local/bin/rtf
|
sudo ln -s `pwd`/bin/rtf /usr/local/bin/rtf
|
||||||
@ -176,7 +176,7 @@ jobs:
|
|||||||
|
|
||||||
- name: Symlink Linuxkit
|
- name: Symlink Linuxkit
|
||||||
run: |
|
run: |
|
||||||
sudo ln -s `pwd`/lkt/linuxkit-amd64-linux /bin/linuxkit
|
sudo ln -s `pwd`/lkt/linuxkit-amd64-linux /usr/local/bin/linuxkit
|
||||||
|
|
||||||
- name: Run Tests
|
- name: Run Tests
|
||||||
run: |
|
run: |
|
||||||
@ -192,37 +192,37 @@ jobs:
|
|||||||
uses: actions/checkout@v1
|
uses: actions/checkout@v1
|
||||||
with:
|
with:
|
||||||
path: ./src/github.com/linuxkit/linuxkit
|
path: ./src/github.com/linuxkit/linuxkit
|
||||||
|
|
||||||
- name: Install Pre-Requisites
|
- name: Install Pre-Requisites
|
||||||
run: |
|
run: |
|
||||||
export DEBIAN_FRONTEND=noninteractive
|
export DEBIAN_FRONTEND=noninteractive
|
||||||
sudo apt-get update
|
sudo apt-get update
|
||||||
sudo apt-get install -qy qemu-utils qemu-system-x86 expect
|
sudo apt-get install -qy qemu-utils qemu-system-x86 expect
|
||||||
|
|
||||||
- name: Restore RTF From Cache
|
- name: Restore RTF From Cache
|
||||||
id: cache-rtf
|
id: cache-rtf
|
||||||
uses: actions/cache@v1
|
uses: actions/cache@v1
|
||||||
with:
|
with:
|
||||||
path: bin
|
path: bin
|
||||||
key: rtf-${{hashFiles('Makefile')}}
|
key: rtf-${{hashFiles('Makefile')}}
|
||||||
|
|
||||||
- name: Build RTF
|
- name: Build RTF
|
||||||
if: steps.cache-rtf.outputs.cache-hit != 'true'
|
if: steps.cache-rtf.outputs.cache-hit != 'true'
|
||||||
run: make bin/rtf
|
run: make bin/rtf
|
||||||
|
|
||||||
- name: Symlink RTF
|
- name: Symlink RTF
|
||||||
run: |
|
run: |
|
||||||
sudo ln -s `pwd`/bin/rtf /usr/local/bin/rtf
|
sudo ln -s `pwd`/bin/rtf /usr/local/bin/rtf
|
||||||
|
|
||||||
- name: Restore LinuxKit From Cache
|
- name: Restore LinuxKit From Cache
|
||||||
uses: actions/cache@v1
|
uses: actions/cache@v1
|
||||||
with:
|
with:
|
||||||
path: lkt
|
path: lkt
|
||||||
key: linuxkit-amd64-linux-${{hashFiles('src/**')}}
|
key: linuxkit-amd64-linux-${{hashFiles('src/**')}}
|
||||||
|
|
||||||
- name: Symlink Linuxkit
|
- name: Symlink Linuxkit
|
||||||
run: |
|
run: |
|
||||||
sudo ln -s `pwd`/lkt/linuxkit-amd64-linux /bin/linuxkit
|
sudo ln -s `pwd`/lkt/linuxkit-amd64-linux /usr/local/bin/linuxkit
|
||||||
|
|
||||||
- name: Run Tests
|
- name: Run Tests
|
||||||
run: |
|
run: |
|
||||||
@ -242,33 +242,33 @@ jobs:
|
|||||||
- name: Install Pre-Requisites
|
- name: Install Pre-Requisites
|
||||||
run: |
|
run: |
|
||||||
export DEBIAN_FRONTEND=noninteractive
|
export DEBIAN_FRONTEND=noninteractive
|
||||||
sudo apt-get update
|
sudo apt-get update
|
||||||
sudo apt-get install -qy qemu-utils qemu-system-x86 expect
|
sudo apt-get install -qy qemu-utils qemu-system-x86 expect
|
||||||
|
|
||||||
- name: Restore RTF From Cache
|
- name: Restore RTF From Cache
|
||||||
id: cache-rtf
|
id: cache-rtf
|
||||||
uses: actions/cache@v1
|
uses: actions/cache@v1
|
||||||
with:
|
with:
|
||||||
path: bin
|
path: bin
|
||||||
key: rtf-${{hashFiles('Makefile')}}
|
key: rtf-${{hashFiles('Makefile')}}
|
||||||
|
|
||||||
- name: Build RTF
|
- name: Build RTF
|
||||||
if: steps.cache-rtf.outputs.cache-hit != 'true'
|
if: steps.cache-rtf.outputs.cache-hit != 'true'
|
||||||
run: make bin/rtf
|
run: make bin/rtf
|
||||||
|
|
||||||
- name: Symlink RTF
|
- name: Symlink RTF
|
||||||
run: |
|
run: |
|
||||||
sudo ln -s `pwd`/bin/rtf /usr/local/bin/rtf
|
sudo ln -s `pwd`/bin/rtf /usr/local/bin/rtf
|
||||||
|
|
||||||
- name: Restore LinuxKit From Cache
|
- name: Restore LinuxKit From Cache
|
||||||
uses: actions/cache@v1
|
uses: actions/cache@v1
|
||||||
with:
|
with:
|
||||||
path: lkt
|
path: lkt
|
||||||
key: linuxkit-amd64-linux-${{hashFiles('src/**')}}
|
key: linuxkit-amd64-linux-${{hashFiles('src/**')}}
|
||||||
|
|
||||||
- name: Symlink Linuxkit
|
- name: Symlink Linuxkit
|
||||||
run: |
|
run: |
|
||||||
sudo ln -s `pwd`/lkt/linuxkit-amd64-linux /bin/linuxkit
|
sudo ln -s `pwd`/lkt/linuxkit-amd64-linux /usr/local/bin/linuxkit
|
||||||
|
|
||||||
- name: Run Tests
|
- name: Run Tests
|
||||||
run: |
|
run: |
|
||||||
@ -284,11 +284,11 @@ jobs:
|
|||||||
uses: actions/checkout@v1
|
uses: actions/checkout@v1
|
||||||
with:
|
with:
|
||||||
path: ./src/github.com/linuxkit/linuxkit
|
path: ./src/github.com/linuxkit/linuxkit
|
||||||
|
|
||||||
- name: Install Pre-Requisites
|
- name: Install Pre-Requisites
|
||||||
run: |
|
run: |
|
||||||
export DEBIAN_FRONTEND=noninteractive
|
export DEBIAN_FRONTEND=noninteractive
|
||||||
sudo apt-get update
|
sudo apt-get update
|
||||||
sudo apt-get install -qy qemu-utils qemu-system-x86 expect
|
sudo apt-get install -qy qemu-utils qemu-system-x86 expect
|
||||||
|
|
||||||
- name: Restore RTF From Cache
|
- name: Restore RTF From Cache
|
||||||
@ -297,11 +297,11 @@ jobs:
|
|||||||
with:
|
with:
|
||||||
path: bin
|
path: bin
|
||||||
key: rtf-${{hashFiles('Makefile')}}
|
key: rtf-${{hashFiles('Makefile')}}
|
||||||
|
|
||||||
- name: Build RTF
|
- name: Build RTF
|
||||||
if: steps.cache-rtf.outputs.cache-hit != 'true'
|
if: steps.cache-rtf.outputs.cache-hit != 'true'
|
||||||
run: make bin/rtf
|
run: make bin/rtf
|
||||||
|
|
||||||
- name: Symlink RTF
|
- name: Symlink RTF
|
||||||
run: |
|
run: |
|
||||||
sudo ln -s `pwd`/bin/rtf /usr/local/bin/rtf
|
sudo ln -s `pwd`/bin/rtf /usr/local/bin/rtf
|
||||||
@ -311,10 +311,10 @@ jobs:
|
|||||||
with:
|
with:
|
||||||
path: lkt
|
path: lkt
|
||||||
key: linuxkit-amd64-linux-${{hashFiles('src/**')}}
|
key: linuxkit-amd64-linux-${{hashFiles('src/**')}}
|
||||||
|
|
||||||
- name: Symlink Linuxkit
|
- name: Symlink Linuxkit
|
||||||
run: |
|
run: |
|
||||||
sudo ln -s `pwd`/lkt/linuxkit-amd64-linux /bin/linuxkit
|
sudo ln -s `pwd`/lkt/linuxkit-amd64-linux /usr/local/bin/linuxkit
|
||||||
|
|
||||||
- name: Run Tests
|
- name: Run Tests
|
||||||
run: |
|
run: |
|
||||||
|
Loading…
Reference in New Issue
Block a user