GitHub Actions workflows - use latest version of actions/checkout (#7534)
(cherry picked from commit c7644eda713044545a135061e4863c2238ebd244)
This commit is contained in:
parent
1c356d2084
commit
925f1ce51e
10
.github/workflows/ci.yml
vendored
10
.github/workflows/ci.yml
vendored
@ -7,7 +7,7 @@ jobs:
|
|||||||
test-ubuntu-latest:
|
test-ubuntu-latest:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v1
|
- uses: actions/checkout@v2
|
||||||
- name: make
|
- name: make
|
||||||
run: make
|
run: make
|
||||||
- name: test
|
- name: test
|
||||||
@ -20,21 +20,21 @@ jobs:
|
|||||||
build-ubuntu-old:
|
build-ubuntu-old:
|
||||||
runs-on: ubuntu-16.04
|
runs-on: ubuntu-16.04
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v1
|
- uses: actions/checkout@v2
|
||||||
- name: make
|
- name: make
|
||||||
run: make
|
run: make
|
||||||
|
|
||||||
build-macos-latest:
|
build-macos-latest:
|
||||||
runs-on: macos-latest
|
runs-on: macos-latest
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v1
|
- uses: actions/checkout@v2
|
||||||
- name: make
|
- name: make
|
||||||
run: make
|
run: make
|
||||||
|
|
||||||
build-32bit:
|
build-32bit:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v1
|
- uses: actions/checkout@v2
|
||||||
- name: make
|
- name: make
|
||||||
run: |
|
run: |
|
||||||
sudo apt-get update && sudo apt-get install libc6-dev-i386
|
sudo apt-get update && sudo apt-get install libc6-dev-i386
|
||||||
@ -43,7 +43,7 @@ jobs:
|
|||||||
build-libc-malloc:
|
build-libc-malloc:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v1
|
- uses: actions/checkout@v2
|
||||||
- name: make
|
- name: make
|
||||||
run: make MALLOC=libc
|
run: make MALLOC=libc
|
||||||
|
|
||||||
|
10
.github/workflows/daily.yml
vendored
10
.github/workflows/daily.yml
vendored
@ -14,7 +14,7 @@ jobs:
|
|||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
timeout-minutes: 14400
|
timeout-minutes: 14400
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v1
|
- uses: actions/checkout@v2
|
||||||
- name: make
|
- name: make
|
||||||
run: make
|
run: make
|
||||||
- name: test
|
- name: test
|
||||||
@ -32,7 +32,7 @@ jobs:
|
|||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
timeout-minutes: 14400
|
timeout-minutes: 14400
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v1
|
- uses: actions/checkout@v2
|
||||||
- name: make
|
- name: make
|
||||||
run: make MALLOC=libc
|
run: make MALLOC=libc
|
||||||
- name: test
|
- name: test
|
||||||
@ -50,7 +50,7 @@ jobs:
|
|||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
timeout-minutes: 14400
|
timeout-minutes: 14400
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v1
|
- uses: actions/checkout@v2
|
||||||
- name: make
|
- name: make
|
||||||
run: |
|
run: |
|
||||||
sudo apt-get update && sudo apt-get install libc6-dev-i386
|
sudo apt-get update && sudo apt-get install libc6-dev-i386
|
||||||
@ -72,7 +72,7 @@ jobs:
|
|||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
timeout-minutes: 14400
|
timeout-minutes: 14400
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v1
|
- uses: actions/checkout@v2
|
||||||
- name: make
|
- name: make
|
||||||
run: |
|
run: |
|
||||||
make BUILD_TLS=yes
|
make BUILD_TLS=yes
|
||||||
@ -92,7 +92,7 @@ jobs:
|
|||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
timeout-minutes: 14400
|
timeout-minutes: 14400
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v1
|
- uses: actions/checkout@v2
|
||||||
- name: make
|
- name: make
|
||||||
run: make valgrind
|
run: make valgrind
|
||||||
- name: test
|
- name: test
|
||||||
|
Loading…
x
Reference in New Issue
Block a user