diff options
author | Ricardo (XenGi) Band <email@ricardo.band> | 2021-02-07 19:03:49 +0100 |
---|---|---|
committer | Ricardo (XenGi) Band <email@ricardo.band> | 2021-02-07 19:03:49 +0100 |
commit | 7e6b07a491a115dab7665b739e1ff9747a4ebd87 (patch) | |
tree | beb239f7adfff9e002bfc2f059279a1655c73fd2 | |
parent | 2fd7045c828cc4389d3678df4e60530bc822dbac (diff) | |
download | gerbolyze-7e6b07a491a115dab7665b739e1ff9747a4ebd87.tar.gz gerbolyze-7e6b07a491a115dab7665b739e1ff9747a4ebd87.tar.bz2 gerbolyze-7e6b07a491a115dab7665b739e1ff9747a4ebd87.zip |
Now actually building the source
-rw-r--r-- | .gitlab-ci.yml | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 62c4d17..d7549ad 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -40,12 +40,13 @@ archlinux: stage: build image: archlinux:latest script: - - "pacman -Syyu --needed --noconfirm --noprogressbar base-devel pugixml opencv pango cairo git python make clang rustup cargo pkgconf" + - "pacman -Syyu --needed --noconfirm --noprogressbar base-devel pugixml opencv pango cairo git python python-pip make clang rustup cargo pkgconf" - "rustup install stable" - "rustup default stable" - "cargo install usvg" - "pip install --user git+https://git.jaseg.de/pcb-tools-extension.git" - - "pip install --user gerbolyze --no-binary gerbolyze" + - "python setup.py install --user" + - "export PATH=$HOME/.local/bin:$PATH" - "gerbolyze --version" source: |