Skip to content

Commit ec307d8

Browse files
committed
Update CI
1 parent 259afbd commit ec307d8

4 files changed

Lines changed: 8 additions & 4 deletions

File tree

.github/workflows/ci.yaml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,7 @@ jobs:
5858
- name: Execute tests
5959
run: bash ci/e2e-run.sh
6060
- name: Upload logs
61+
if: always()
6162
uses: actions/upload-artifact@v2
6263
with:
6364
name: e2e-logs
@@ -129,13 +130,13 @@ jobs:
129130
name: Fetch prebuilt cargo-udeps
130131
uses: actions/cache@v2
131132
with:
132-
key: udeps-bin-${{ runner.os }}-v0.1.20
133+
key: udeps-bin-${{ runner.os }}-v0.1.21
133134
path: ~/udeps
134135
- name: Install cargo-udeps
135136
if: steps.cache_udeps.outputs.cache-hit != 'true'
136137
run: |2-
137138
138-
cargo install cargo-udeps --locked --version 0.1.20
139+
cargo install cargo-udeps --locked --version 0.1.21
139140
mkdir -p ~/udeps
140141
cp $( which cargo-udeps ) ~/udeps
141142
- name: Run cargo-udeps

.github/workflows/meta.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
- name: Install golang
1818
uses: actions/setup-go@v2
1919
with:
20-
go-version: 1.16.3
20+
go-version: 1.16.4
2121
- name: Fetch generator sources
2222
run: git clone https://github.com/jjs-dev/ci-config-gen ./gen
2323
- name: Install ci-config-gen

bors.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
delete-merged-branches = true
2-
status = ["check-ci-config", "e2e-build", "e2e-run", "rustfmt", "rust-unit-tests", "rust-unused-deps", "rust-cargo-deny", "rust-lint", "cpp-lint"]
2+
status = ["check-ci-config", "e2e-build", "e2e-run", "rustfmt", "rust-unit-tests", "rust-unused-deps", "rust-cargo-deny", "rust-lint", "cpp-lint", "publish"]
33
timeout-sec = 900

ci/publish-images.sh

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,9 @@ then
77
elif [ "$GITHUB_REF" = "refs/heads/trying" ]
88
then
99
TAG="dev"
10+
elif [ "$GITHUB_REF" = "refs/heads/staging" ]
11+
then
12+
exit 0
1013
else
1114
echo "unknown GITHUB_REF: $GITHUB_REF"
1215
exit 1

0 commit comments

Comments
 (0)