fake machine-id in CI (#1380)
This commit is contained in:
parent
0667552132
commit
9d337bfb0e
5 changed files with 25 additions and 0 deletions
5
.github/workflows/ci_bats_hub.yaml
vendored
5
.github/workflows/ci_bats_hub.yaml
vendored
|
@ -15,6 +15,11 @@ jobs:
|
|||
timeout-minutes: 20
|
||||
steps:
|
||||
|
||||
- name: "Force machineid"
|
||||
run: |
|
||||
sudo chmod +w /etc/machine-id
|
||||
echo githubciXXXXXXXXXXXXXXXXXXXXXXXX | sudo tee /etc/machine-id
|
||||
|
||||
- name: "Set up Go 1.17"
|
||||
uses: actions/setup-go@v1
|
||||
with:
|
||||
|
|
5
.github/workflows/ci_bats_mariadb.yaml
vendored
5
.github/workflows/ci_bats_mariadb.yaml
vendored
|
@ -22,6 +22,11 @@ jobs:
|
|||
- 3306:3306
|
||||
steps:
|
||||
|
||||
- name: "Force machineid"
|
||||
run: |
|
||||
sudo chmod +w /etc/machine-id
|
||||
echo githubciXXXXXXXXXXXXXXXXXXXXXXXX | sudo tee /etc/machine-id
|
||||
|
||||
- name: "Set up Go 1.17"
|
||||
uses: actions/setup-go@v1
|
||||
with:
|
||||
|
|
5
.github/workflows/ci_bats_mysql.yaml
vendored
5
.github/workflows/ci_bats_mysql.yaml
vendored
|
@ -22,6 +22,11 @@ jobs:
|
|||
- 3306:3306
|
||||
steps:
|
||||
|
||||
- name: "Force machineid"
|
||||
run: |
|
||||
sudo chmod +w /etc/machine-id
|
||||
echo githubciXXXXXXXXXXXXXXXXXXXXXXXX | sudo tee /etc/machine-id
|
||||
|
||||
- name: "Set up Go 1.17"
|
||||
uses: actions/setup-go@v1
|
||||
with:
|
||||
|
|
5
.github/workflows/ci_bats_postgres.yaml
vendored
5
.github/workflows/ci_bats_postgres.yaml
vendored
|
@ -27,6 +27,11 @@ jobs:
|
|||
--health-retries 5
|
||||
steps:
|
||||
|
||||
- name: "Force machineid"
|
||||
run: |
|
||||
sudo chmod +w /etc/machine-id
|
||||
echo githubciXXXXXXXXXXXXXXXXXXXXXXXX | sudo tee /etc/machine-id
|
||||
|
||||
- name: "Set up Go 1.17"
|
||||
uses: actions/setup-go@v1
|
||||
with:
|
||||
|
|
5
.github/workflows/ci_bats_sqlite.yaml
vendored
5
.github/workflows/ci_bats_sqlite.yaml
vendored
|
@ -15,6 +15,11 @@ jobs:
|
|||
timeout-minutes: 20
|
||||
steps:
|
||||
|
||||
- name: "Force machineid"
|
||||
run: |
|
||||
sudo chmod +w /etc/machine-id
|
||||
echo githubciXXXXXXXXXXXXXXXXXXXXXXXX | sudo tee /etc/machine-id
|
||||
|
||||
- name: "Set up Go 1.17"
|
||||
uses: actions/setup-go@v1
|
||||
with:
|
||||
|
|
Loading…
Reference in a new issue