Skip to content

Commit

Permalink
fix(ci): update mirrors before installing
Browse files Browse the repository at this point in the history
  • Loading branch information
JasonGrace2282 committed Aug 12, 2024
1 parent fb2d797 commit 651179e
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -226,7 +226,7 @@
},
{
"name": "install Kerberos",
"run": "sudo apt install -y krb5-user"
"run": "sudo apt update\nsudo apt install -y krb5-user\n"
},
{
"name": "Run tests (Fork)",
Expand Down
5 changes: 4 additions & 1 deletion ci/spec.yml
Original file line number Diff line number Diff line change
Expand Up @@ -192,11 +192,14 @@ jobs:
echo "PGPASSFILE=$PGPASSFILE" >> $GITHUB_ENV
echo 127.0.0.1:5432:postgres:postgres:postgres >$PGPASSFILE
chmod 600 $PGPASSFILE
- name: Create database
run: psql -U postgres -h 127.0.0.1 -c 'create database ion'

- name: install Kerberos
run: sudo apt install -y krb5-user
run: |
sudo apt update
sudo apt install -y krb5-user
# Tests
- name: Run tests (Fork)
Expand Down

0 comments on commit 651179e

Please sign in to comment.