Merge pull request #1483 from embassy-rs/remove-oidc
ci: replace openid connect with static secret.
This commit is contained in:
commit
6efcc9acaa
2
.github/workflows/rust.yml
vendored
2
.github/workflows/rust.yml
vendored
@ -36,6 +36,8 @@ jobs:
|
||||
target_ci
|
||||
key: rust3-${{ runner.os }}-${{ hashFiles('rust-toolchain.toml') }}
|
||||
- name: build
|
||||
env:
|
||||
TELEPROBE_TOKEN: ${{ secrets.TELEPROBE_TOKEN }}
|
||||
run: |
|
||||
curl -L -o /usr/local/bin/cargo-batch https://github.com/embassy-rs/cargo-batch/releases/download/batch-0.3.0/cargo-batch
|
||||
chmod +x /usr/local/bin/cargo-batch
|
||||
|
8
ci.sh
8
ci.sh
@ -160,12 +160,8 @@ function run_elf {
|
||||
}
|
||||
|
||||
if [[ -z "${TELEPROBE_TOKEN-}" ]]; then
|
||||
if [[ -z "${ACTIONS_ID_TOKEN_REQUEST_TOKEN-}" ]]; then
|
||||
echo No teleprobe token found, skipping running HIL tests
|
||||
exit
|
||||
fi
|
||||
|
||||
export TELEPROBE_TOKEN=$(curl -sS -H "Authorization: Bearer $ACTIONS_ID_TOKEN_REQUEST_TOKEN" "$ACTIONS_ID_TOKEN_REQUEST_URL" | jq -r '.value')
|
||||
echo No teleprobe token found, skipping running HIL tests
|
||||
exit
|
||||
fi
|
||||
|
||||
for board in $(ls out/tests); do
|
||||
|
Loading…
Reference in New Issue
Block a user