summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorStefan Auditor2017-03-16 10:16:14 +0100
committerStefan Auditor2017-03-16 10:20:31 +0100
commitbd63a1835b6117c4caf56a87b3447feb0910c589 (patch)
tree246203b4aebe1485cc4601b76194aecf5c4db5c7
parent89862f76c5c6488540d692c6bb9f2c13596908d9 (diff)
downloadaur-bd63a1835b6117c4caf56a87b3447feb0910c589.tar.gz
Workaround for arch package upgrades
-rw-r--r--.gitlab-ci.yml9
1 files changed, 9 insertions, 0 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 1e9113895712..9a264748b1c3 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -9,6 +9,9 @@ test:
only:
- master
before_script:
+ - pacman -Syuw --noconfirm
+ - rm /etc/ssl/certs/ca-certificates.crt
+ - pacman -Su --noconfirm
- pacman -Syyu namcap --noconfirm
- useradd somebody
- echo "somebody ALL=(ALL) NOPASSWD:ALL" >> /etc/sudoers
@@ -18,6 +21,9 @@ test:
github:
stage: deploy
before_script:
+ - pacman -Syuw --noconfirm
+ - rm /etc/ssl/certs/ca-certificates.crt
+ - pacman -Su --noconfirm
- pacman -Syyu git --noconfirm
- git checkout "$CI_BUILD_REF_NAME"
- git remote add github https://"$GITHUB_USERNAME":"$GITHUB_TOKEN"@github.com/sanduhrs/arch-aur-traefik-bin
@@ -33,6 +39,9 @@ github:
aur:
stage: deploy
before_script:
+ - pacman -Syuw --noconfirm
+ - rm /etc/ssl/certs/ca-certificates.crt
+ - pacman -Su --noconfirm
- pacman -Syyu git openssh --noconfirm
- eval $(ssh-agent -s)
- ssh-add <(echo "$SSH_PRIVATE_KEY")